Showing
1 changed file
with
2 additions
and
2 deletions
| @@ -87,12 +87,12 @@ jobs: | @@ -87,12 +87,12 @@ jobs: | ||
| 87 | - name: Run unit tests | 87 | - name: Run unit tests |
| 88 | run: flutter test | 88 | run: flutter test |
| 89 | - name: Run integration tests on iOS | 89 | - name: Run integration tests on iOS |
| 90 | - if: contains(matrix.device, 'iPhone') && false # Need to run locally for now. | 90 | + if: contains(matrix.device, 'iPhone') |
| 91 | run: | | 91 | run: | |
| 92 | cd example | 92 | cd example |
| 93 | flutter drive --target=test_driver/app.dart | 93 | flutter drive --target=test_driver/app.dart |
| 94 | - name: Run integration tests on Android | 94 | - name: Run integration tests on Android |
| 95 | - if: contains(matrix.device, 'Android') | 95 | + if: contains(matrix.device, 'Android') && false # Need to run locally for now. |
| 96 | uses: reactivecircus/android-emulator-runner@v2.5.0 | 96 | uses: reactivecircus/android-emulator-runner@v2.5.0 |
| 97 | with: | 97 | with: |
| 98 | api-level: 29 | 98 | api-level: 29 |
-
Please register or login to post a comment