Skip to content

Commit be5277e

Browse files
committed
🔇 Do not run mypy on Python 3.7 as it behaves differently
1 parent 40beca9 commit be5277e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ jobs:
5656
if: steps.cache.outputs.cache-hit != 'true'
5757
run: python -m poetry install
5858
- name: Lint
59+
# Do not run on Python 3.7 as mypy behaves differently
60+
if: matrix.python-version != '3.7'
5961
run: python -m poetry run bash scripts/lint.sh
6062
- run: mkdir coverage
6163
- name: Test

0 commit comments

Comments
 (0)