From c5f928ad3d1fca184ee3704d7001801dff3505f6 Mon Sep 17 00:00:00 2001 From: Jon Reid Date: Wed, 3 Jul 2024 15:02:05 -0700 Subject: [PATCH] . e Turn off code signing for iOS tests for faster feedback --- run_tests_ios.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/run_tests_ios.sh b/run_tests_ios.sh index 8cc0dac..e14b090 100755 --- a/run_tests_ios.sh +++ b/run_tests_ios.sh @@ -1,3 +1,6 @@ #!/bin/bash -xcodebuild test -project ApprovalTests.Swift.xcodeproj -scheme ApprovalTests_iOS -sdk iphonesimulator -destination "platform=iOS Simulator,OS=latest,name=iPhone 15" +SCHEME='ApprovalTests_iOS' +DESTINATION='platform=iOS Simulator,OS=latest,name=iPhone 15' + +xcodebuild test -scheme $SCHEME -sdk iphonesimulator -destination "$DESTINATION" CODE_SIGNING_ALLOWED='NO'