Skip to content

Commit

Permalink
CI/CD: Verify flake8 is picking up flake8-bugbear
Browse files Browse the repository at this point in the history
  • Loading branch information
Mews committed Jun 10, 2024
1 parent 3154837 commit 41a6362
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with flake8
run: flake8 --max-line-length=120 . --exclude env,configuration,venv,src,scripts,.venv,e2e
run: |
flake8 --version # Verify flake8 is picking up flake8-bugbear
flake8 --max-line-length=120 . --exclude env,configuration,venv,src,scripts,.venv,e2e
lint-black:
name: Linting with black
Expand Down

0 comments on commit 41a6362

Please sign in to comment.