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 bad4390 commit 21746b0Copy full SHA for 21746b0
.github/workflows/test.yml
@@ -75,8 +75,14 @@ jobs:
75
- name: Run Mypy stubtest
76
# XXX doesn't work on Pypy due to some symtable issues...
77
if: "!startsWith(matrix.python-version, 'pypy')"
78
- run: |
79
- stubtest --ignore-disjoint-bases --allowlist stubtest-allowlist json_stream_rs_tokenizer
+ run: >
+ stubtest
80
+ ${{
81
+ !startsWith(matrix.python-version, '3.8')
82
+ && '--ignore-disjoint-bases'
83
+ || ''
84
+ }}
85
+ --allowlist stubtest-allowlist json_stream_rs_tokenizer
86
- name: Save Rust/Cargo cache
87
uses: actions/cache/save@v4
88
if: always()
0 commit comments