We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45e977 commit 32d500bCopy full SHA for 32d500b
.github/workflows/ios-simulator-tests.yml
@@ -72,7 +72,13 @@ jobs:
72
APNS_TOKEN_KEY: ${{ secrets.APNS_TOKEN_KEY }}
73
run: pnpm run test
74
75
- - name: Retrieve and Print Test Logs on Failure
+ - name: Retrieve and Print Test Logs on Failure (1/2)
76
+ if: failure()
77
+ run: |
78
+ echo "Test failed. Retrieving logs..."
79
+ xcrun xcresulttool get test-results tests --path /Users/runner/work/hapns/hapns/TestSlowness.xcresult --format json | jq .
80
+
81
+ - name: Retrieve and Print Test Logs on Failure (2/2)
82
if: failure()
83
run: |
84
echo "Test failed. Retrieving logs..."
0 commit comments