@@ -45,16 +45,20 @@ runs:
45
45
46
46
- name : Run end-to-end-tests
47
47
run : |
48
- if [ -n "$TEST_NAME" ]; then TEST_NAME_ARGUMENT=" -only-testing $TEST_NAME"; else TEST_NAME_ARGUMENT=""; fi
49
- set -o pipefail && env NSUnbufferedIO=YES xcodebuild
50
- -project MullvadVPN.xcodeproj
51
- -scheme MullvadVPNUITests
52
- -testPlan MullvadVPNUITestsAll $TEST_NAME_ARGUMENT
53
- -resultBundlePath ${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report
54
- -derivedDataPath derived-data
55
- -destination "platform=iOS,id=$TEST_DEVICE_UDID"
56
- test-without-building 2>&1 | xcbeautify --report junit
57
- --report-path ${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report
48
+ if [ -n "$TEST_NAME" ]; then
49
+ TEST_NAME_ARGUMENT=" -only-testing $TEST_NAME"
50
+ else
51
+ TEST_NAME_ARGUMENT=""
52
+ fi
53
+ set -o pipefail && env NSUnbufferedIO=YES xcodebuild \
54
+ -project MullvadVPN.xcodeproj \
55
+ -scheme MullvadVPNUITests \
56
+ -testPlan MullvadVPNUITestsAll $TEST_NAME_ARGUMENT \
57
+ -resultBundlePath ${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report \
58
+ -derivedDataPath derived-data \
59
+ -destination "platform=iOS,id=$TEST_DEVICE_UDID" \
60
+ test-without-building 2>&1 | xcbeautify --report junit \
61
+ --report-path ${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report
58
62
shell : bash
59
63
working-directory : ${{ inputs.outputs_path }}/mullvadvpn-app/ios
60
64
env :
0 commit comments