We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a96e5b1 commit 3444b1fCopy full SHA for 3444b1f
.github/actions/ios-end-to-end-tests/action.yml
@@ -55,9 +55,9 @@ runs:
55
-project MullvadVPN.xcodeproj \
56
-scheme MullvadVPNUITests \
57
-testPlan $XCODE_TEST_PLAN \
58
- -resultBundlePath test-report \
+ -resultBundlePath xcode-test-report \
59
-destination "platform=iOS,id=$TEST_DEVICE_UDID" \
60
- clean test 2>&1 | xcbeautify --report junit --report-path test-report
+ clean test 2>&1 | xcbeautify --report junit --report-path junit-test-report
61
shell: bash
62
working-directory: ios/
63
env:
.github/workflows/ios-end-to-end-tests.yml
@@ -77,5 +77,7 @@ jobs:
77
if: always()
78
uses: actions/upload-artifact@v4
79
with:
80
- name: test-report
81
- path: ios/test-report/junit.xml
+ name: test-results
+ path: |
82
+ ios/junit-test-report/junit.xml
83
+ ios/xcode-test-report.xcresult
0 commit comments