We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a52b45 commit 0ce93bfCopy full SHA for 0ce93bf
.github/workflows/tests.yml
@@ -38,6 +38,13 @@ jobs:
38
run: uv sync --all-extras --dev
39
40
- name: Run tests
41
+ if: runner.os == 'Windows'
42
+ run:
43
+ uv run winpty python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml
44
+ tests
45
+
46
+ - name: Run tests
47
+ if: runner.os != 'Windows'
48
run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
49
50
- name: Upload test results to Codecov
0 commit comments