We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041c72d commit d061c78Copy full SHA for d061c78
build.gradle
@@ -103,6 +103,9 @@ clean {
103
test {
104
useJUnitPlatform()
105
106
+ // Ensure test doesn't run concurrently with distro file operations
107
+ mustRunAfter copyDocumentation
108
+
109
// show standard out and standard error of the test JVM(s) on the console
110
// testLogging.showStandardStreams = true
111
@@ -111,7 +114,7 @@ test {
114
112
115
// required for Apache Arrow memory access on Java 17+
113
116
jvmArgs '--add-opens=java.base/java.nio=ALL-UNNAMED'
-
117
118
119
inputs.dir "$distroDir/test_data"
120
inputs.files("$distroDir/models", "$distroDir/config/default.groovy")
0 commit comments