From 005c89faca0013d9bdbdafc7582c0decc5be73d6 Mon Sep 17 00:00:00 2001 From: Subodh Kant Chaturvedi Date: Thu, 15 Jul 2021 14:16:50 +0530 Subject: [PATCH] increase sleep duration + show logs in CI (#4756) --- .github/workflows/gradle.yml | 2 +- .../automaticMigrationAcceptance/MigrationAcceptanceTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index a317f6284f926..d953ba9d50346 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -122,7 +122,7 @@ jobs: run: ./tools/bin/acceptance_test.sh - name: Automatic Migration Acceptance Test - run: MIGRATION_TEST_VERSION=$(grep VERSION .env | tr -d "VERSION=") ./gradlew :airbyte-tests:automaticMigrationAcceptanceTest --scan + run: MIGRATION_TEST_VERSION=$(grep VERSION .env | tr -d "VERSION=") ./gradlew :airbyte-tests:automaticMigrationAcceptanceTest --scan -i - name: Slack Notification - Failure if: failure() && github.ref == 'refs/heads/master' diff --git a/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java b/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java index 3d606392bc972..e863e7bc9c73d 100644 --- a/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java +++ b/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java @@ -126,7 +126,7 @@ private void firstRun() customDockerComposeContainer.start(); - Thread.sleep(20000); + Thread.sleep(50000); assertTrue(logsToExpect.isEmpty()); ApiClient apiClient = getApiClient();