Skip to content

Commit acad5b5

Browse files
committed
Use the same style for running and building tests
1 parent 2cf1e71 commit acad5b5

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

.github/actions/run-ios-e2e-tests/action.yml

+14-10
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,20 @@ runs:
4545

4646
- name: Run end-to-end-tests
4747
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
5862
shell: bash
5963
working-directory: ${{ inputs.outputs_path }}/mullvadvpn-app/ios
6064
env:

0 commit comments

Comments
 (0)