Skip to content

Commit 863484e

Browse files
committed
Fix CI
1 parent af52757 commit 863484e

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
exclude:
1414
- os: windows-latest
15-
python-version: 3.6
15+
python-version: '3.6'
16+
- os: windows-latest
17+
python-version: '3.11.0-rc.1'
1618
timeout-minutes: 20
1719

1820
steps:
@@ -43,18 +45,11 @@ jobs:
4345
- name: Install dependencies
4446
run: make setup-ci
4547

46-
- name: Run tests except Windows
47-
if: matrix.os != 'windows-latest'
48+
- name: Run tests
4849
env:
4950
PYTEST_DISCORD_WEBHOOK: ${{ secrets.PYTEST_DISCORD_WEBHOOK }}
5051
run: tox -e cov -- --discord-verbose=0
5152

52-
- name: Run tests for Windows
53-
if: matrix.os == 'windows-latest'
54-
env:
55-
PYTEST_DISCORD_WEBHOOK: ${{ secrets.PYTEST_DISCORD_WEBHOOK }}
56-
run: tox -e py
57-
5853
- name: Upload coverage report
5954
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'
6055
run: |

0 commit comments

Comments
 (0)