Tobias Pasquale commited on
Commit
c260a07
·
1 Parent(s): 76c2e95

CI: Fix flake8 to exclude dev-tools directory (resolves lint errors)

Browse files
Files changed (1) hide show
  1. .github/workflows/main.yml +2 -2
.github/workflows/main.yml CHANGED
@@ -79,8 +79,8 @@ jobs:
79
  black --check .
80
  # Check import sorting
81
  isort --check-only .
82
- # Run flake8 (fail the job on lint errors) and exclude virtualenv
83
- flake8 --max-line-length=88 --exclude venv
84
  - name: Run tests
85
  run: |
86
  pytest
 
79
  black --check .
80
  # Check import sorting
81
  isort --check-only .
82
+ # Run flake8 (fail the job on lint errors) and exclude virtualenv and dev tools
83
+ flake8 --max-line-length=88 --exclude venv,dev-tools
84
  - name: Run tests
85
  run: |
86
  pytest