You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, you can see that the "suite" is marked as ca.solostudios.nyx.sonatype.SonatypePublishPluginTest.
However, this is not actually the suite.
Instead, I believe that the suite should either be the name of the source set, or the name of the task.
Let's say I have the following test source sets (this example is for a gradle plugin as it's what I'm working on, and I believe it should illustrate the most complex example)
functionalTest: functional/integration test suite
test tasks:
functionalTest8.6: tests against gradle 8.6
functionalTest8.7: tests against gradle 8.7
...
functionalTest8.10: tests against gradle 8.10
test: non-functional/integration test suite
test tasks:
test
so, I believe that the following should be output instead:
here, the suite label is replaced with test. In the case of, say, the functionalTest8.6, it would be replaced with functionalTest8.6. However, alternatively, it could be replaced with functionalTest and
{
"name": "Gradle Version",
"value": "8.6"
}
could be added to parameters instead.
The text was updated successfully, but these errors were encountered:
Currently, when reporting the test results, the report will contain something like the following:
Here, you can see that the "suite" is marked as
ca.solostudios.nyx.sonatype.SonatypePublishPluginTest
.However, this is not actually the suite.
Instead, I believe that the suite should either be the name of the source set, or the name of the task.
Let's say I have the following test source sets (this example is for a gradle plugin as it's what I'm working on, and I believe it should illustrate the most complex example)
functionalTest
: functional/integration test suitetest tasks:
functionalTest8.6
: tests against gradle 8.6functionalTest8.7
: tests against gradle 8.7functionalTest8.10
: tests against gradle 8.10test
: non-functional/integration test suitetest tasks:
test
so, I believe that the following should be output instead:
here, the
suite
label is replaced withtest
. In the case of, say, thefunctionalTest8.6
, it would be replaced withfunctionalTest8.6
. However, alternatively, it could be replaced withfunctionalTest
andcould be added to
parameters
instead.The text was updated successfully, but these errors were encountered: