exclude export_tests.py from linting for Python<3.8

pull/4539/head
Mike Fährmann 1 year ago
parent d13c82eff1
commit 05f183d7d4
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -53,7 +53,14 @@ jobs:
- name: Lint with flake8
run: |
case "${{ matrix.python-version }}" in
3.4|3.5|3.6|3.7)
flake8 --extend-exclude scripts/export_tests.py .
;;
*)
flake8 .
;;
esac
- name: Run tests
run: |

Loading…
Cancel
Save