Add .venv to pycodestyle ignore

This commit is contained in:
Joe Banks
2025-09-28 19:28:54 +01:00
parent 50f6ff4bfd
commit 97b3663909
2 changed files with 2 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ jobs:
if: steps.static-cache.outputs.cache-hit != 'true'
- name: Basic Checks
run: |
uv run pycodestyle . --exclude=migrations,node_modules
uv run pycodestyle . --exclude=.venv,migrations,node_modules
uv run python3 manage.py check
uv run python3 manage.py makemigrations --check --dry-run
uv run python3 manage.py collectstatic --noinput