Bwc tests can consume much time to build and to run so it's nice to be able to skip them when running the `check` task on the SQL module. Introduce a new task `checkNoBwc` so one can use: ``` ./gradlew -p x-pack/plugin/sql checkNoBwc ``` to skip them. (cherry picked from commit a52e1846f338f6869273181c6f248579581fa68c)
This commit is contained in:
parent
0ebaf8a3ec
commit
f69d268500
|
@ -133,3 +133,9 @@ tasks.register("regen") {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
task checkNoBwc {
|
||||||
|
dependsOn tasks.withType(Test).matching { it.name.contains('bwc') == false }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue