We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac848e8 commit b3285f2Copy full SHA for b3285f2
reactive/kotlinx-coroutines-reactive/build.gradle
@@ -13,6 +13,10 @@ task testNG(type: Test) {
13
useTestNG()
14
reports.html.destination = file("$buildDir/reports/testng")
15
include '**/*ReactiveStreamTckTest.*'
16
+ // Skip testNG when tests are filtered with --tests, otherwise it simply fails
17
+ onlyIf {
18
+ filter.includePatterns.isEmpty()
19
+ }
20
doFirst {
21
// Classic gradle, nothing works without doFirst
22
println "TestNG tests: ($includes)"
0 commit comments