We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b8b9e commit f5b78e9Copy full SHA for f5b78e9
1 file changed
.github/workflows/cron-ci.yaml
@@ -45,16 +45,14 @@ jobs:
45
- run: pipenv install
46
working-directory: ./extra_tests
47
- name: run snippets
48
- run: pipenv run pytest -v
+ run: LLVM_PROFILE_FILE="$PWD/snippet-%p.profraw" pipenv run pytest -v
49
50
env:
51
RUSTPYTHON_TESTS_NOBUILD: 'true'
52
- LLVM_PROFILE_FILE: 'snippet-%p.profraw'
53
- name: run cpython tests
54
- run: target/release/rustpython -m test -v
+ run: LLVM_PROFILE_FILE="$PWD/regrtest.profraw" target/release/rustpython -m test -v
55
56
RUSTPYTHONPATH: ${{ github.workspace }}/Lib
57
- LLVM_PROFILE_FILE: 'regrtest.profraw'
58
- name: prepare code coverage data
59
run: |
60
rusttool() {
0 commit comments