Skip to content

Commit 69c8960

Browse files
committed
Disable stubtest CI for Windows w/ Python 3.8
1 parent 21746b0 commit 69c8960

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,14 @@ jobs:
7373
run: |
7474
pytest
7575
- name: Run Mypy stubtest
76-
# XXX doesn't work on Pypy due to some symtable issues...
77-
if: "!startsWith(matrix.python-version, 'pypy')"
76+
# XXX doesn't work on Pypy due to some symtable issues and on Windows
77+
# with Python 3.8 due to pathlib issues...
78+
if: >
79+
!startsWith(matrix.python-version, 'pypy')
80+
&& !(
81+
startsWith(matrix.python-version, '3.8')
82+
&& startsWith(matrix.os, 'windows-')
83+
)
7884
run: >
7985
stubtest
8086
${{

0 commit comments

Comments
 (0)