Skip to content

Commit

Permalink
Another attempt to exclude dirs from flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
TiagoOpenCosmos committed Jan 27, 2025
1 parent 2c0ac0a commit b3326a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
continue_on_error: false
black: true
flake8: true
flake8-options: "--exclude tests/*,build/*"

bandit:
name: bandit
Expand Down Expand Up @@ -58,7 +57,7 @@ jobs:
- name: install dependencies
run: pip install .[test]
- name: cognitive
run: flake8 . --max-cognitive-complexity=5 --exclude=test_*.py
run: flake8 . --max-cognitive-complexity=5 --exclude=tests/*,build/*

isort:
name: isort
Expand Down

0 comments on commit b3326a0

Please sign in to comment.