From 52e4c5463354f8a0f664f657f6b7dbcaca017e99 Mon Sep 17 00:00:00 2001 From: NachoSoto Date: Tue, 24 Oct 2023 09:46:35 -0700 Subject: [PATCH] `Integration Tests`: use repetition count from test plan (#3329) See https://github.com/RevenueCat/purchases-ios/blob/4.28.1/Tests/TestPlans/CI-BackendIntegration.xctestplan#L28 This was changed to 5 repetitions in #3218, but the `Fastfile` was overriding that. Also #1925 didn't have any effect because of this, and that actually makes tests take significantly longer, so this reverts that. --- Tests/TestPlans/CI-BackendIntegration.xctestplan | 1 - fastlane/Fastfile | 1 - 2 files changed, 2 deletions(-) diff --git a/Tests/TestPlans/CI-BackendIntegration.xctestplan b/Tests/TestPlans/CI-BackendIntegration.xctestplan index 03f8595089..6cfad91993 100644 --- a/Tests/TestPlans/CI-BackendIntegration.xctestplan +++ b/Tests/TestPlans/CI-BackendIntegration.xctestplan @@ -26,7 +26,6 @@ ], "maximumTestExecutionTimeAllowance" : 180, "maximumTestRepetitions" : 5, - "repeatInNewRunnerProcess" : true, "targetForVariableExpansion" : { "containerPath" : "container:RevenueCat.xcodeproj", "identifier" : "2DEAC2D926EFE46E006914ED", diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 74cbe9cb9f..196bc8d4e0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -572,7 +572,6 @@ platform :ios do derived_data_path: "scan_derived_data", output_types: 'junit', output_style: 'raw', - number_of_retries: 3, result_bundle: true, testplan: "CI-BackendIntegration", configuration: 'Debug',