Skip to content

Commit ef78df7

Browse files
committed
disabling compiler plugin tests because we're moving it: #1290
1 parent 40fe8de commit ef78df7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

plugins/kotlin-dataframe/build.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
22
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
3-
import org.jetbrains.kotlin.gradle.tasks.BaseKotlinCompile
43

54
plugins {
65
id("java")
@@ -122,3 +121,13 @@ kotlinPublications {
122121
packageName = artifactId
123122
}
124123
}
124+
125+
// Disabling all tests before removing the compiler plugin here
126+
// because we're moving to the Kotlin repo: #1290
127+
tasks.filter {
128+
":plugins:kotlin-dataframe" in it.path &&
129+
"test" in it.name.lowercase()
130+
}.forEach {
131+
println("disabling compiler plugin test task: ${it.path}. See #1290")
132+
it.onlyIf { false }
133+
}

0 commit comments

Comments
 (0)