Skip to content

Commit

Permalink
Disable MultiplatformIT on Windows
Browse files Browse the repository at this point in the history
kotlinNpmInstall fails too often and has nothing to do with KSP.
  • Loading branch information
ting-yuan committed Sep 5, 2024
1 parent fb5781a commit f277bac
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class MultiplatformIT(useKSP2: Boolean) {
@Test
fun testJVM() {
Assume.assumeFalse(System.getProperty("os.name").startsWith("mac", ignoreCase = true))
Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows", ignoreCase = true))
val gradleRunner = GradleRunner.create().withProjectDir(project.root)

val resultCleanBuild =
Expand Down

0 comments on commit f277bac

Please sign in to comment.