Skip to content

Commit

Permalink
Remove Salesforce integration tests from CI (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens authored Oct 26, 2020
1 parent 219ac75 commit d3f7afc
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ plugins {

apply from: rootProject.file('tools/gradle/commons/integrations/image.gradle')
apply from: rootProject.file('tools/gradle/commons/integrations/integration-test.gradle')
apply from: rootProject.file('tools/gradle/commons/integrations/standard-source-test.gradle')
//apply from: rootProject.file('tools/gradle/commons/integrations/standard-source-test.gradle')

dependencies {
}

standardSourceTest {
ext {
imageName = "${extractImageName(project.file('Dockerfile'))}:dev"
specPath = 'source_salesforce_singer/spec.json'
configPath ='secrets/config.json'
catalogPath = 'standard_test/catalog.json'
}
}
// We cannot run these tests with every build because it blows through the Salesforce quota. For now, turn this on as needed and run these tests locally; they will not be run in CI.
// CRITICAL Salesforce has reported 13060/15000 (87.07%) total REST quota used across all Salesforce Applications. Terminating replication to not continue past configured percentage of 80% total quota.
//standardSourceTest {
// ext {
// imageName = "${extractImageName(project.file('Dockerfile'))}:dev"
// specPath = 'source_salesforce_singer/spec.json'
// configPath ='secrets/config.json'
// catalogPath = 'standard_test/catalog.json'
// }
//}

buildImage.dependsOn ':airbyte-integrations:bases:base-singer:buildImage'
integrationTest.dependsOn(buildImage)

0 comments on commit d3f7afc

Please sign in to comment.