Skip to content

Commit eaeb370

Browse files
authored
ci(firestore): add --ignore-timeouts flag for cloud firestore e2e tests (#17612)
* ci(firestore): add `--ignore-timeouts` flag for cloud firestore e2e tests * chore: set timeout-minutes value to 60 * remove --ignore-timeouts flag * revert change * chore: apply --ignore-timeouts to all iOS e2e tests * chore: apply --ignore-timeouts to android and macos e2e tests * chore: fix macos ci
1 parent fe9ddd3 commit eaeb370

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/android.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
arch: x86_64
9090
working-directory: ${{ matrix.working_directory }}
9191
script: |
92-
flutter test integration_test/e2e_test.dart --dart-define=CI=true -d emulator-5554
92+
flutter test integration_test/e2e_test.dart --ignore-timeouts --dart-define=CI=true -d emulator-5554
9393
- name: Ensure Appium is shut down
9494
# Required because of below issue where emulator failing to shut down properly causes tests to fail
9595
# https://github.com/ReactiveCircus/android-emulator-runner/issues/385

.github/workflows/ios.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
jobs:
2828
ios:
2929
runs-on: macos-15
30-
timeout-minutes: 45
30+
timeout-minutes: 60
3131
strategy:
3232
fail-fast: false
3333
matrix:
@@ -115,4 +115,4 @@ jobs:
115115
run: |
116116
# Uncomment following line to have simulator logs printed out for debugging purposes.
117117
# xcrun simctl spawn booted log stream --predicate 'eventMessage contains "flutter"' &
118-
flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --dart-define=CI=true
118+
flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --ignore-timeouts --dart-define=CI=true

.github/workflows/macos.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,5 @@ jobs:
9696
flutter test \
9797
integration_test/e2e_test.dart \
9898
-d macos \
99-
--dart-define=CI=true
99+
--dart-define=CI=true \
100+
--ignore-timeouts

0 commit comments

Comments
 (0)