We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bebc24 commit 5ed43b0Copy full SHA for 5ed43b0
1 file changed
.github/workflows/org_babel_tests.yml
@@ -56,7 +56,24 @@ jobs:
56
env:
57
NO_SANDBOX: "True"
58
working-directory: tests
59
- run: ./run_expect_tests.sh
+ run: |
60
+ set -x
61
+ echo "=== Python version ==="
62
+ ../../.venv/bin/python3 --version
63
+ echo "=== Running tests ==="
64
+ ./run_expect_tests.sh || {
65
+ echo "=== Test failed, showing diffs ==="
66
+ for f in golden/*.json; do
67
+ name=$(basename "$f" .json)
68
+ if [ -f "staging/babel-formatting.org" ]; then
69
+ echo "=== $name ==="
70
+ cat "$f" | head -20
71
+ echo "---"
72
+ fi
73
+ done
74
+ cat test-results.xml
75
+ exit 1
76
+ }
77
78
- name: Publish Test Results
79
uses: EnricoMi/publish-unit-test-result-action@v2
0 commit comments