From e88bd717c3a07389663df7aef935ce2a6de640a5 Mon Sep 17 00:00:00 2001 From: Bug Magnet Date: Tue, 23 Jul 2024 11:49:04 +0200 Subject: [PATCH] Make more changes --- .github/actions/run-ios-e2e-tests/action.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/actions/run-ios-e2e-tests/action.yml b/.github/actions/run-ios-e2e-tests/action.yml index 503bad1285fe..0275023ce74f 100644 --- a/.github/actions/run-ios-e2e-tests/action.yml +++ b/.github/actions/run-ios-e2e-tests/action.yml @@ -47,20 +47,19 @@ runs: run: | echo "$(cat $0)" echo get relieved on - exit 1 if [ -n "$TEST_NAME" ]; then TEST_NAME_ARGUMENT=" -only-testing $TEST_NAME" else TEST_NAME_ARGUMENT="" fi - set -o pipefail && env NSUnbufferedIO=YES xcodebuild - -project MullvadVPN.xcodeproj - -scheme MullvadVPNUITests - -testPlan MullvadVPNUITestsAll $TEST_NAME_ARGUMENT - -resultBundlePath ${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report - -derivedDataPath derived-data - -destination "platform=iOS,id=$TEST_DEVICE_UDID" - test-without-building 2>&1 #| xcbeautify --report junit + set -o pipefail && env NSUnbufferedIO=YES xcodebuild \ + -project MullvadVPN.xcodeproj \ + -scheme MullvadVPNUITests \ + -testPlan MullvadVPNUITestsAll $TEST_NAME_ARGUMENT \ + -resultBundlePath ${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report \ + -derivedDataPath derived-data \ + -destination "platform=iOS,id=$TEST_DEVICE_UDID" \ + test-without-building 2>&1 #| xcbeautify --report junit \ --report-path ${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report shell: bash working-directory: ${{ inputs.outputs_path }}/mullvadvpn-app/ios