Skip to content

Commit

Permalink
Retry integration tests for darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Dec 15, 2024
1 parent 7a7f296 commit 97e4b89
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,18 @@ jobs:
fi
- name: Run integration tests
id: Run-integration-tests
timeout-minutes: 15
continue-on-error: true
run: |
cd example
flutter test -d macos integration_test/integration_test.dart macos
- name: Retry integration tests
if: steps.Run-integration-tests.outcome == 'failure'
timeout-minutes: 15
run: |
flutter clean && flutter pub get
cd example
flutter test -d macos integration_test/integration_test.dart macos
Expand Down Expand Up @@ -161,7 +172,18 @@ jobs:
fi
- name: Run integration tests
id: Run-integration-tests
timeout-minutes: 15
continue-on-error: true
run: |
cd example
flutter test integration_test/integration_test.dart
- name: Retry integration tests
if: steps.Run-integration-tests.outcome == 'failure'
timeout-minutes: 15
run: |
flutter clean && flutter pub get
cd example
flutter test integration_test/integration_test.dart
Expand Down

0 comments on commit 97e4b89

Please sign in to comment.