We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59cd621 commit b309a7cCopy full SHA for b309a7c
buildSrc/src/main/groovy/airbyte-bulk-connector.gradle
@@ -241,6 +241,15 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
241
dependsOn project.tasks.matching { it.name ==~ /(compile|spotbugs)[a-zA-Z]*Java/ }
242
}
243
244
+ boolean withSlowTests = System.getProperty('skipSlowTests', 'false') == 'false'
245
+ project.tasks.matching {
246
+ it.name == 'test' ||
247
+ it.name == 'integrationTestNonDocker' ||
248
+ it.name == 'integrationTestJava'
249
+ }.configureEach {
250
+ onlyIf { withSlowTests }
251
+ }
252
+
253
project.configurations {
254
testFixturesImplementation.extendsFrom implementation
255
testFixturesRuntimeOnly.extendsFrom runtimeOnly
0 commit comments