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 1b3362c commit 0bdc100Copy full SHA for 0bdc100
.github/workflows/windows-ci.yml
@@ -43,13 +43,13 @@ jobs:
43
UV_CACHE_DIR: ~\AppData\Local\uv\Cache
44
run: |
45
curl -LsSf https://astral.sh/uv/install.sh | sh
46
- uv venv ~\AppData\Local\.venv
47
- source ~\AppData\Local\.venv
+ uv venv "~\AppData\Local\.venv"
+ source "~\AppData\Local\.venv"
48
uv pip install --upgrade --editable ".[dev]"
49
50
- name: "Run tests"
51
52
53
# We run tests against "." and not the tests directory as we test the README
54
# and documentation.
55
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml
0 commit comments