We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df55813 commit 61d8d6eCopy full SHA for 61d8d6e
1 file changed
allure-junit-platform/build.gradle.kts
@@ -29,6 +29,10 @@ tasks.jar {
29
}
30
31
tasks.test {
32
+ // The Allure Gradle adapter adds this module's published artifact to the
33
+ // test runtime classpath, so make the jar/task relationship explicit when
34
+ // jar and test are scheduled in the same build.
35
+ dependsOn(tasks.jar)
36
systemProperty("junit.jupiter.execution.parallel.enabled", "false")
37
useJUnitPlatform()
38
exclude("**/features/*")
0 commit comments