We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a22aa0 commit 454a21bCopy full SHA for 454a21b
.github/workflows/cron-ci.yaml
@@ -37,10 +37,10 @@ jobs:
37
working-directory: ./extra_tests
38
continue-on-error: true
39
- 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: |
+ # run test_importlib separately, otherwise it hangs (?)
+ LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v test_importlib
+ LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v -x test_importlib
44
45
- name: prepare code coverage data
46
run: |
0 commit comments