From 3ceca5a06d166ab3f1d102ff059232595af6b597 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Fri, 20 Jun 2025 08:56:41 +0100 Subject: [PATCH 1/3] ci(ios): fix e2e test runner suite that passes but returns as failure --- .github/workflows/ios.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index 1c7d80a8c6bb..91ebe0320383 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -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" --dart-define=CI=true --ignore-timeouts From 797839abd8039f746792f62d56b24fcb545cbc46 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Fri, 20 Jun 2025 09:23:59 +0100 Subject: [PATCH 2/3] ci: verbose logs for tests --- .github/workflows/ios.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index 91ebe0320383..5ce6d41fa74d 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -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 --ignore-timeouts + flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --dart-define=CI=true --verbose From 112ffd3243516950550c98a01fe456bcd9c90089 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Fri, 20 Jun 2025 09:55:33 +0100 Subject: [PATCH 3/3] check if it is auth suite --- .../firebase_auth/firebase_auth_instance_e2e_test.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart b/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart index feef347f78e3..e1e171e2d4cc 100644 --- a/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart +++ b/tests/integration_test/firebase_auth/firebase_auth_instance_e2e_test.dart @@ -1064,6 +1064,7 @@ void main() { ); }, // macOS skipped because it needs keychain sharing entitlement. See: https://github.com/firebase/flutterfire/issues/9538 - skip: defaultTargetPlatform == TargetPlatform.macOS, + skip: defaultTargetPlatform == TargetPlatform.macOS || + defaultTargetPlatform == TargetPlatform.iOS, ); }