We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SKIP_MOCK_TESTS
1 parent 79f436a commit 47f39a4Copy full SHA for 47f39a4
1 file changed
buildSrc/src/main/kotlin/langchain.kotlin.gradle.kts
@@ -32,6 +32,9 @@ kotlin {
32
tasks.withType<Test>().configureEach {
33
systemProperty("junit.jupiter.execution.parallel.enabled", true)
34
systemProperty("junit.jupiter.execution.parallel.mode.default", "concurrent")
35
+
36
+ // `SKIP_MOCK_TESTS` affects which tests run so it must be added as input for proper cache invalidation.
37
+ inputs.property("skipMockTests", System.getenv("SKIP_MOCK_TESTS")).optional(true)
38
}
39
40
val ktfmt by configurations.creating
0 commit comments