diff --git a/.editorconfig-checker.json b/.editorconfig-checker.json index 3fa0e744..0410ab8e 100644 --- a/.editorconfig-checker.json +++ b/.editorconfig-checker.json @@ -1,5 +1,10 @@ { - "Exclude": ["pytest_django/fixtures.py"], + "Exclude": [ + "pytest_django/fixtures.py", + ".tox/*", + ".ruff_cache/*", + "pytest_django.egg-info/*" + ], "Disable": { "MaxLineLength": true } diff --git a/tox.ini b/tox.ini index a9c14a89..1caaf78d 100644 --- a/tox.ini +++ b/tox.ini @@ -48,7 +48,7 @@ commands = ruff check --diff {posargs:pytest_django pytest_django_test tests} ruff format --quiet --diff {posargs:pytest_django pytest_django_test tests} mypy {posargs:pytest_django pytest_django_test tests} - ec {posargs:pytest_django pytest_django_test tests} + ec . python -c "import subprocess, sys; sys.exit(subprocess.call('zizmor --persona=pedantic --format sarif .github/workflows/deploy.yml .github/workflows/main.yml > zizmor.sarif', shell=True))" [testenv:doc8]