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 d7bffd2 commit 7d40d45Copy full SHA for 7d40d45
buildSrc/src/main/kotlin/anthropic.kotlin.gradle.kts
@@ -33,6 +33,9 @@ kotlin {
33
tasks.withType<Test>().configureEach {
34
systemProperty("junit.jupiter.execution.parallel.enabled", true)
35
systemProperty("junit.jupiter.execution.parallel.mode.default", "concurrent")
36
+
37
+ // `SKIP_MOCK_TESTS` affects which tests run so it must be added as input for proper cache invalidation.
38
+ inputs.property("skipMockTests", System.getenv("SKIP_MOCK_TESTS")).optional(true)
39
}
40
41
val ktfmt by configurations.creating
0 commit comments