Skip to content

Commit 8044dba

Browse files
committed
Try finding Python in Windows
1 parent 28104b6 commit 8044dba

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,12 @@ jobs:
4545
run: |
4646
irm https://astral.sh/uv/install.ps1 | iex
4747
uv venv ${{ env.VIRTUAL_ENV }}
48-
"${{ env.VIRTUAL_ENV }}\Scripts\Activate.ps1"
4948
uv pip install --upgrade --editable .[dev]
5049
5150
- name: "Run tests"
5251
env:
5352
VIRTUAL_ENV: ~\AppData\Local\.venv
5453
run: |
55-
"${{ env.VIRTUAL_ENV }}\Scripts\Activate.ps1"
5654
# We run tests against "." and not the tests directory as we test the README
5755
# and documentation.
58-
python -m pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml
56+
"${{ env.VIRTUAL_ENV }}\bin\python -m pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml"

0 commit comments

Comments
 (0)