Skip to content

Commit

Permalink
Kube Acceptance Test user 'true' to filter out tests. (#4338)
Browse files Browse the repository at this point in the history
  • Loading branch information
davinchia committed Jun 25, 2021
1 parent 5fb98b3 commit 8783ebb
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -485,7 +485,7 @@ public void testScheduledSync() throws Exception {
// Since this is testing mechanisms orthogonal to Airbyte deployment method, there is no value in
// repeating this test.
@DisabledIfEnvironmentVariable(named = "KUBE",
matches = "*")
matches = "true")
public void testMultipleSchemasAndTablesSync() throws Exception {
// create tables in another schema
PostgreSQLContainerHelper.runSqlScript(MountableFile.forClasspathResource("postgres_second_schema_multiple_tables.sql"), sourcePsql);
Expand All @@ -512,7 +512,7 @@ public void testMultipleSchemasAndTablesSync() throws Exception {
// Since this is testing mechanisms orthogonal to Airbyte deployment method, there is no value in
// repeating this test.
@DisabledIfEnvironmentVariable(named = "KUBE",
matches = "*")
matches = "true")
public void testMultipleSchemasSameTablesSync() throws Exception {
// create tables in another schema
PostgreSQLContainerHelper.runSqlScript(MountableFile.forClasspathResource("postgres_separate_schema_same_table.sql"), sourcePsql);
Expand All @@ -539,7 +539,7 @@ public void testMultipleSchemasSameTablesSync() throws Exception {
// Since this is testing mechanisms orthogonal to Airbyte deployment method, there is no value in
// repeating this test.
@DisabledIfEnvironmentVariable(named = "KUBE",
matches = "*")
matches = "true")
public void testIncrementalDedupeSync() throws Exception {
final String connectionName = "test-connection";
final UUID sourceId = createPostgresSource().getSourceId();
Expand Down Expand Up @@ -663,7 +663,7 @@ public void testCheckpointing() throws Exception {
// This is especially since logs are not local on Kube, and downloading them from S3 can take some
// time.
@DisabledIfEnvironmentVariable(named = "KUBE",
matches = "*")
matches = "true")
public void testRedactionOfSensitiveRequestBodies() throws Exception {
// check that the source password is not present in the logs
final List<String> serverLogLines = Files.readLines(
Expand Down

0 comments on commit 8783ebb

Please sign in to comment.