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 0705adc commit d0bf798Copy full SHA for d0bf798
.github/workflows/tests.yml
@@ -35,11 +35,15 @@ jobs:
35
- name: Install the project
36
run: uv sync --all-extras --dev
37
38
- - name: Run tests
+ - name: Run Windows tests
39
if: runner.os == 'Windows'
40
shell: cmd
41
run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
42
43
+ - name: Run Mac/Linux tests
44
+ if: runner.os == 'Linux' || runner.os == 'macOS'
45
+ run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
46
+
47
- name: Upload test results to Codecov
48
if: ${{ !cancelled() }}
49
uses: codecov/test-results-action@v1
0 commit comments