From ed50661dc94e2de546f00027b0b240c2b9baf5ae Mon Sep 17 00:00:00 2001 From: ahmednfwela Date: Tue, 26 Nov 2024 03:26:50 +0200 Subject: [PATCH] attempt fixing web integration tests for the 100th time --- .github/workflows/tests.yaml | 1 + melos.yaml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c3b442e..b6736b3 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -165,6 +165,7 @@ jobs: path: packages/oidc/example/ios-coverage.info web: strategy: + fail-fast: false matrix: working-directory: ["packages/oidc/example"] runs-on: macos-latest diff --git a/melos.yaml b/melos.yaml index 38bd98a..cdd424b 100644 --- a/melos.yaml +++ b/melos.yaml @@ -98,7 +98,7 @@ scripts: - "*example*" integration_test:android: name: Flutter Android Integration tests - exec: flutter test integration_test --coverage -d android --coverage-path android-coverage.info + exec: flutter test integration_test --coverage -d android --coverage-path android-coverage.info --dart-define=CI=true packageFilters: flutter: true dirExists: @@ -106,7 +106,7 @@ scripts: - android integration_test:ios: name: Flutter iOs Integration tests - exec: flutter test integration_test --coverage -d iPhone --coverage-path ios-coverage.info + exec: flutter test integration_test --coverage -d iPhone --coverage-path ios-coverage.info --dart-define=CI=true packageFilters: flutter: true dirExists: @@ -114,7 +114,7 @@ scripts: - ios integration_test:chrome: name: Flutter Chrome Integration tests - exec: flutter drive --driver=test_driver/integration_test.dart --target=integration_test/app_test.dart -d chrome | tee output.log + exec: flutter drive --driver=test_driver/integration_test.dart --target=integration_test/app_test.dart -d chrome --dart-define=CI=true | tee output.log packageFilters: flutter: true dirExists: