Skip to content

Commit 0ce93bf

Browse files
committed
Try running windows tests using winpty
1 parent 7a52b45 commit 0ce93bf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ jobs:
3838
run: uv sync --all-extras --dev
3939

4040
- 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'
4148
run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
4249

4350
- name: Upload test results to Codecov

0 commit comments

Comments
 (0)