fix test order (2)

This commit is contained in:
Bixilon 2022-11-14 16:14:04 +01:00
parent 2fa3b57400
commit 98e20dd71b
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

View File

@ -191,6 +191,7 @@ testing {
targets {
all {
testTask.configure {
shouldRunAfter(test)
filter {
isFailOnNoMatchingTests = true
}
@ -210,7 +211,6 @@ testing {
val options = this as TestNGOptions
options.preserveOrder = true
}
shouldRunAfter("test")
}
}
}
@ -266,7 +266,7 @@ testing {
}
tasks.named("check") {
dependsOn(testing.suites.named("test"), testing.suites.named("integrationTest"))
dependsOn(testing.suites.named("integrationTest"))
}
fun DependencyHandler.javafx(name: String) {