Skip to content

Commit e9f414d

Browse files
authored
do not run excluded tags in integration tests (#8715)
1 parent fc91f67 commit e9f414d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

buildSrc/src/main/groovy/airbyte-integration-test-java.gradle

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ class AirbyteIntegrationTestJavaPlugin implements Plugin<Project> {
2525
testClassesDirs += project.sourceSets.integrationTestJava.output.classesDirs
2626
classpath += project.sourceSets.integrationTestJava.runtimeClasspath
2727

28-
useJUnitPlatform()
28+
useJUnitPlatform {
29+
// todo (cgardens) - figure out how to de-dupe this exclusion with the one in build.gradle.
30+
excludeTags 'log4j2-config', 'logger-client', 'cloud-storage'
31+
}
32+
2933
testLogging() {
3034
events "passed", "failed"
3135
exceptionFormat "full"

0 commit comments

Comments
 (0)