1
0
mirror of synced 2025-12-23 21:03:15 -05:00

put all integration test tasks under integrationTest (#1231)

* always re-run standardSourceTestPython

* rename and regroup to integrationTest

* add comment
This commit is contained in:
Jared Rhizor
2020-12-07 10:10:26 -08:00
committed by GitHub
parent 80812b4860
commit 1bd19d1bae
18 changed files with 62 additions and 56 deletions

View File

@@ -17,9 +17,9 @@ dependencies {
testImplementation "org.testcontainers:postgresql:1.15.0-rc2"
integrationTestImplementation project(':airbyte-integrations:bases:standard-destination-test')
integrationTestImplementation "org.testcontainers:postgresql:1.15.0-rc2"
integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-destination-test')
integrationTestJavaImplementation "org.testcontainers:postgresql:1.15.0-rc2"
implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
integrationTestImplementation files(project(':airbyte-integrations:bases:base-normalization').airbyteDocker.outputs)
integrationTestJavaImplementation files(project(':airbyte-integrations:bases:base-normalization').airbyteDocker.outputs)
}