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' if: steps.static-cache.outputs.cache-hit != 'true'
- name: Basic Checks - name: Basic Checks
run: | 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 check
uv run python3 manage.py makemigrations --check --dry-run uv run python3 manage.py makemigrations --check --dry-run
uv run python3 manage.py collectstatic --noinput uv run python3 manage.py collectstatic --noinput

View File

@@ -1,2 +1,3 @@
[pycodestyle] [pycodestyle]
max-line-length = 320 max-line-length = 320
exclude = .venv