Skip to content

Commit

Permalink
do not run excluded tags in integration tests (#8715)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens committed Dec 11, 2021
1 parent fc91f67 commit e9f414d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ class AirbyteIntegrationTestJavaPlugin implements Plugin<Project> {
testClassesDirs += project.sourceSets.integrationTestJava.output.classesDirs
classpath += project.sourceSets.integrationTestJava.runtimeClasspath

useJUnitPlatform()
useJUnitPlatform {
// todo (cgardens) - figure out how to de-dupe this exclusion with the one in build.gradle.
excludeTags 'log4j2-config', 'logger-client', 'cloud-storage'
}

testLogging() {
events "passed", "failed"
exceptionFormat "full"
Expand Down

0 comments on commit e9f414d

Please sign in to comment.