Skip to content

Commit 3c22131

Browse files
committed
Switch back to the literal style
1 parent 714ff03 commit 3c22131

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

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

+11-8
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,22 @@ runs:
4545

4646
- name: Run end-to-end-tests
4747
run: |
48+
echo "$(cat $0)"
49+
echo get relieved on
50+
exit 1
4851
if [ -n "$TEST_NAME" ]; then
4952
TEST_NAME_ARGUMENT=" -only-testing $TEST_NAME"
5053
else
5154
TEST_NAME_ARGUMENT=""
5255
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 \
56+
set -o pipefail && env NSUnbufferedIO=YES xcodebuild
57+
-project MullvadVPN.xcodeproj
58+
-scheme MullvadVPNUITests
59+
-testPlan MullvadVPNUITestsAll $TEST_NAME_ARGUMENT
60+
-resultBundlePath ${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report
61+
-derivedDataPath derived-data
62+
-destination "platform=iOS,id=$TEST_DEVICE_UDID"
63+
test-without-building 2>&1 #| xcbeautify --report junit
6164
--report-path ${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report
6265
shell: bash
6366
working-directory: ${{ inputs.outputs_path }}/mullvadvpn-app/ios

0 commit comments

Comments
 (0)