Skip to content

Commit

Permalink
. e Turn off code signing for iOS tests for faster feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Jul 3, 2024
1 parent fd878ac commit c5f928a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion run_tests_ios.sh
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit c5f928a

Please sign in to comment.