We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40fe8de commit ef78df7Copy full SHA for ef78df7
plugins/kotlin-dataframe/build.gradle.kts
@@ -1,6 +1,5 @@
1
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
3
-import org.jetbrains.kotlin.gradle.tasks.BaseKotlinCompile
4
5
plugins {
6
id("java")
@@ -122,3 +121,13 @@ kotlinPublications {
122
121
packageName = artifactId
123
}
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