Skip to content

Commit

Permalink
do not run excluded tags in integration tests (airbytehq#8715)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens authored and schlattk committed Jan 4, 2022
1 parent 1e282cb commit dabb6c8
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 dabb6c8

Please sign in to comment.