Skip to content

Commit 21bf70a

Browse files
authored
[CI] Print failed tests (#942)
1 parent d4d122b commit 21bf70a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,6 @@ jobs:
132132
if [[ "${{ matrix.expecttest-accept }}" == "true" ]]; then export EXPECTTEST_ACCEPT=1; fi
133133
if [[ "${{ matrix.ref-eager }}" == "true" ]]; then export HELION_INTERPRET=1; fi
134134
if [[ "${{ matrix.alias }}" == *"a10g"* ]]; then export HELION_DEV_LOW_VRAM=1; fi
135-
pytest --timeout=60
135+
# -rf: print failed tests
136+
# --timeout: max allowed time for each test
137+
pytest -rf --timeout=60

0 commit comments

Comments
 (0)