From 5c3678759ed9c0adc317ef989143789c42daf2ad Mon Sep 17 00:00:00 2001 From: Ian Saultz <52051793+atierian@users.noreply.github.com> Date: Tue, 17 Oct 2023 11:28:54 -0400 Subject: [PATCH] fix(push): disable parallel testing in action workflow --- .github/workflows/integ_test_push_notifications.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integ_test_push_notifications.yml b/.github/workflows/integ_test_push_notifications.yml index f7ede25e98..31ebe90cc1 100644 --- a/.github/workflows/integ_test_push_notifications.yml +++ b/.github/workflows/integ_test_push_notifications.yml @@ -47,6 +47,7 @@ jobs: scheme: PushNotificationHostApp destination: 'platform=iOS Simulator,name=iPhone 14,OS=latest' xcode_path: '/Applications/Xcode_14.3.app' + other_flags: -parallel-testing-enabled NO push-notification-integration-test-tvOS: runs-on: macos-13 @@ -88,6 +89,7 @@ jobs: destination: platform=tvOS Simulator,name=Apple TV 4K (3rd generation),OS=16.4 sdk: appletvsimulator xcode_path: '/Applications/Xcode_14.3.app' + other_flags: -parallel-testing-enabled NO push-notification-integration-test-watchOS: runs-on: macos-13 @@ -129,3 +131,4 @@ jobs: destination: platform=watchOS Simulator,name=Apple Watch Series 8 (45mm),OS=9.4 sdk: watchsimulator xcode_path: '/Applications/Xcode_14.3.app' + other_flags: -parallel-testing-enabled NO