Skip to content

Commit c973830

Browse files
committed
Disable browser tests for krpc-test
1 parent 5b9c92b commit c973830

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

krpc/krpc-test/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ tasks.withType<KotlinJvmTest> {
9292
}
9393
}
9494

95+
// sporadic failures in CI, probably not kRPC related
96+
tasks.withType<KotlinJsTest> {
97+
onlyIf { !name.contains("browser", ignoreCase = true) }
98+
}
99+
95100
val resourcesPath = projectDir.resolve("src/jvmTest/resources")
96101
val tmpExt = "tmp"
97102
val goldExt = "gold"

0 commit comments

Comments
 (0)