We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f13b4 commit afdafdaCopy full SHA for afdafda
.github/workflows/tests.yml
@@ -18,9 +18,7 @@ jobs:
18
runs-on: ${{ matrix.os }}
19
defaults:
20
run:
21
- # Use a conditional expression to set the default shell
22
- # 'cmd' on Windows, 'bash' on other platforms (Linux, macOS)
23
- shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}
+ shell: bash
24
steps:
25
- name: Check out
26
uses: actions/checkout@v6.0.2
@@ -39,9 +37,8 @@ jobs:
39
37
40
38
- name: Run tests
41
if: runner.os == 'Windows'
42
- run:
43
- winpty uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml
44
- tests
+ shell: powershell
+ run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
45
46
47
if: runner.os != 'Windows'
0 commit comments