Skip to content

Commit

Permalink
Use 3rd party task to run integration tests on external service (#56592)
Browse files Browse the repository at this point in the history
Backport of #56587 for 6.8
  • Loading branch information
tlrx authored Jun 2, 2020
1 parent df61d99 commit 8e994aa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,7 @@ integTestCluster {
"ignored;DefaultEndpointsProtocol=http;BlobEndpoint=http://${ -> azureStorageFixture.addressAndPort }"
}
}

task azureThirdPartyTest {
dependsOn integTest
}
4 changes: 4 additions & 0 deletions plugins/repository-gcs/qa/google-cloud-storage/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,7 @@ integTestCluster {
println "Using an external service to test the repository-gcs plugin"
}
}

task gcsThirdPartyTest {
dependsOn integTest
}
4 changes: 4 additions & 0 deletions plugins/repository-s3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ if (useFixture) {
project.check.dependsOn(integTestECS)
}

task s3ThirdPartyTest {
dependsOn integTest
}

thirdPartyAudit.ignoreMissingClasses (
// classes are missing
'javax.servlet.ServletContextEvent',
Expand Down

0 comments on commit 8e994aa

Please sign in to comment.