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 21746b0 commit 69c8960Copy full SHA for 69c8960
.github/workflows/test.yml
@@ -73,8 +73,14 @@ jobs:
73
run: |
74
pytest
75
- name: Run Mypy stubtest
76
- # XXX doesn't work on Pypy due to some symtable issues...
77
- if: "!startsWith(matrix.python-version, 'pypy')"
+ # XXX doesn't work on Pypy due to some symtable issues and on Windows
+ # 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
+ )
84
run: >
85
stubtest
86
${{
0 commit comments