Skip to content

Commit

Permalink
use runner.temp for pytest base tempdir (avoid drive issues on Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Jul 27, 2023
1 parent 8c977ff commit 4ff328c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
working-directory: ./autotest
shell: cmd
run: |
pytest -v -m="base" --durations=0 --cov=pymake --cov-report=xml
pytest -v -m="base" --durations=0 --cov=pymake --cov-report=xml --basetemp=${{ runner.temp }}
- name: Print coverage report before upload
working-directory: ./autotest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pymake-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Run pytest
working-directory: ./autotest
run: |
pytest -v --dist=loadfile -n=auto -m="base or regression" --durations=0 --cov=pymake --cov-report=xml
pytest -v --dist=loadfile -n=auto -m="base or regression" --durations=0 --cov=pymake --cov-report=xml --basetemp=${{ runner.temp }}
- name: Print coverage report before upload
working-directory: ./autotest
Expand Down

0 comments on commit 4ff328c

Please sign in to comment.