diff --git a/.github/workflows/test_fast.yml b/.github/workflows/test_fast.yml index 6cc1ebb6c14..821760f9e5b 100644 --- a/.github/workflows/test_fast.yml +++ b/.github/workflows/test_fast.yml @@ -58,8 +58,10 @@ jobs: flake8 etc/bin/shellchecker + # note: exclude python 3.10+ from mypy checks as these produce false + # positives in installed libraries for python 3.7 - name: Typing - if: startsWith(matrix.os, 'ubuntu') + if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.python-version, 3.9) run: mypy - name: Doctests