We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6453f5e commit 85f5accCopy full SHA for 85f5acc
reactive/kotlinx-coroutines-reactive/build.gradle.kts
@@ -16,7 +16,7 @@ dependencies {
16
tasks {
17
val testNG = register<Test>("testNG") {
18
useTestNG()
19
- reports.html.destination = buildDir.resolve("/reports/testng")
+ reports.html.destination = file("$buildDir/reports/testng")
20
include("**/*ReactiveStreamTckTest.*")
21
// Skip testNG when tests are filtered with --tests, otherwise it simply fails
22
onlyIf {
@@ -29,7 +29,7 @@ tasks {
29
}
30
31
named<Test>("test") {
32
- reports.html.destination = buildDir.resolve("/reports/junit")
+ reports.html.destination = file("$buildDir/reports/junit")
33
34
dependsOn(testNG)
35
0 commit comments