From d9ee6d9badbc34aa0f7b5affc37eeb3dadc5c85c Mon Sep 17 00:00:00 2001 From: Dillon Nys Date: Wed, 28 Jun 2023 12:44:49 -0700 Subject: [PATCH] test --- .github/workflows/amplify_canaries.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/amplify_canaries.yaml b/.github/workflows/amplify_canaries.yaml index 7f27103bb7..72e428dd82 100644 --- a/.github/workflows/amplify_canaries.yaml +++ b/.github/workflows/amplify_canaries.yaml @@ -211,7 +211,10 @@ jobs: - name: Run iOS integration tests timeout-minutes: 45 working-directory: canaries - run: flutter test -d test integration_test/main_test.dart --verbose + run: | + # Perform a build to reduce startup time of `fltuter test` and prevent timeout + flutter build ios --simulator --target=integration_test/main_test.dart + flutter test -d test integration_test/main_test.dart --verbose - name: Log failing ios runs if: ${{ failure() }}