From f745a6435bad737dcb29807cd451326f63327a87 Mon Sep 17 00:00:00 2001 From: Vinod Vydier Date: Thu, 8 Aug 2024 11:00:37 -0500 Subject: [PATCH] added retry-tests-on-failure to 5 for xcodebuild (#587) --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 7c138340..cac2f142 100644 --- a/Makefile +++ b/Makefile @@ -4,18 +4,24 @@ XCODEBUILD_OPTIONS_IOS=\ -configuration Debug \ -destination platform='iOS Simulator,name=iPhone 15,OS=latest' \ -scheme $(PROJECT_NAME) \ + -test-iterations 5 \ + -retry-tests-on-failure \ -workspace . XCODEBUILD_OPTIONS_TVOS=\ -configuration Debug \ -destination platform='tvOS Simulator,name=Apple TV 4K (3rd generation),OS=latest' \ -scheme $(PROJECT_NAME) \ + -test-iterations 5 \ + -retry-tests-on-failure \ -workspace . XCODEBUILD_OPTIONS_WATCHOS=\ -configuration Debug \ -destination platform='watchOS Simulator,name=Apple Watch Series 8 (45mm),OS=latest' \ -scheme $(PROJECT_NAME) \ + -test-iterations 5 \ + -retry-tests-on-failure \ -workspace . .PHONY: setup-brew