From 6bba35bbc97b5f3df058c3d6d9ce8cb24f689b6f Mon Sep 17 00:00:00 2001 From: Jiaxiang Chen Date: Thu, 16 May 2024 23:03:50 -0700 Subject: [PATCH] Do not run testWasm on release branch --- .../test/kotlin/com/google/devtools/ksp/test/KMPImplementedIT.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/KMPImplementedIT.kt b/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/KMPImplementedIT.kt index a97ab87f2f..a4d82f5d7a 100644 --- a/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/KMPImplementedIT.kt +++ b/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/KMPImplementedIT.kt @@ -110,6 +110,7 @@ class KMPImplementedIT(useKSP2: Boolean) { @Test fun testWasm() { + Assume.assumeTrue(project.useKSP2) Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows", ignoreCase = true)) val gradleRunner = GradleRunner.create().withProjectDir(project.root)