Skip to content

Commit 454a21b

Browse files
committed
oops try fix test_importlib hang again
1 parent 4a22aa0 commit 454a21b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cron-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
working-directory: ./extra_tests
3838
continue-on-error: true
3939
- name: run cpython tests
40-
run: LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v -x test_importlib
41-
continue-on-error: true
42-
- name: run test_importlib, separately
43-
run: LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v -x test_importlib
40+
run: |
41+
# run test_importlib separately, otherwise it hangs (?)
42+
LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v test_importlib
43+
LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v -x test_importlib
4444
continue-on-error: true
4545
- name: prepare code coverage data
4646
run: |

0 commit comments

Comments
 (0)