Skip to content

Commit

Permalink
disable 2 tests not working due to compiler version mismatch in relea…
Browse files Browse the repository at this point in the history
…se branch
  • Loading branch information
neetopia authored and ting-yuan committed Oct 26, 2023
1 parent c0063eb commit 273d73a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ class PlaygroundIT(val useK2: Boolean) {

@Test
fun testVersions() {
Assume.assumeFalse(useK2)
val kotlinCompile = "org.jetbrains.kotlin.gradle.tasks.KotlinCompile"
val buildFile = File(project.root, "workload/build.gradle.kts")
buildFile.appendText("\ntasks.withType<$kotlinCompile> {")
Expand Down Expand Up @@ -332,6 +333,7 @@ class PlaygroundIT(val useK2: Boolean) {

@Test
fun testProjectExtensionCompilerOptions() {
Assume.assumeFalse(useK2)
Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows", ignoreCase = true))
val properties = File(project.root, "gradle.properties")
properties.writeText(
Expand Down

0 comments on commit 273d73a

Please sign in to comment.