diff --git a/.github/workflows/android.yaml b/.github/workflows/android.yaml index 67712ac87d7f..bbdf0079151b 100644 --- a/.github/workflows/android.yaml +++ b/.github/workflows/android.yaml @@ -89,7 +89,7 @@ jobs: arch: x86_64 working-directory: ${{ matrix.working_directory }} script: | - flutter test integration_test/e2e_test.dart --dart-define=CI=true -d emulator-5554 + flutter test integration_test/e2e_test.dart --ignore-timeouts --dart-define=CI=true -d emulator-5554 - name: Ensure Appium is shut down # Required because of below issue where emulator failing to shut down properly causes tests to fail # https://github.com/ReactiveCircus/android-emulator-runner/issues/385 diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index 1c7d80a8c6bb..80d627a7e827 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -27,7 +27,7 @@ on: jobs: ios: runs-on: macos-15 - timeout-minutes: 45 + timeout-minutes: 60 strategy: fail-fast: false matrix: @@ -115,4 +115,4 @@ jobs: run: | # Uncomment following line to have simulator logs printed out for debugging purposes. # xcrun simctl spawn booted log stream --predicate 'eventMessage contains "flutter"' & - flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --dart-define=CI=true + flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --ignore-timeouts --dart-define=CI=true diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index fc2e142e6032..4c4e8a6ba03f 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -96,4 +96,5 @@ jobs: flutter test \ integration_test/e2e_test.dart \ -d macos \ - --dart-define=CI=true + --dart-define=CI=true \ + --ignore-timeouts