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 d9d036b commit 3c44cf0Copy full SHA for 3c44cf0
.github/workflows/windows-ci.yml
@@ -49,8 +49,10 @@ jobs:
49
uv pip install --upgrade --editable .[dev]
50
51
- name: "Run tests"
52
+ env:
53
+ VIRTUAL_ENV: ~\AppData\Local\.venv
54
run: |
- source "~\AppData\Local\.venv"
55
+ "${{ env.VIRTUAL_ENV }}/Scripts\Activate.ps1"
56
# We run tests against "." and not the tests directory as we test the README
57
# and documentation.
58
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml
0 commit comments