Skip to content

Commit

Permalink
🔇 Do not run mypy on Python 3.7 as it behaves differently
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo committed Nov 18, 2023
1 parent 40beca9 commit be5277e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: python -m poetry install
- name: Lint
# Do not run on Python 3.7 as mypy behaves differently
if: matrix.python-version != '3.7'
run: python -m poetry run bash scripts/lint.sh
- run: mkdir coverage
- name: Test
Expand Down

0 comments on commit be5277e

Please sign in to comment.