Skip to content

Commit c0a283e

Browse files
committed
Revert to not explicitly setting shell on Windows in GitHub Actions
1 parent 123482e commit c0a283e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,7 @@ jobs:
3535
- name: Install the project
3636
run: uv sync --all-extras --dev
3737

38-
- 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'
38+
- name: Run tests
4539
run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
4640

4741
- name: Upload test results to Codecov

0 commit comments

Comments
 (0)