Add .venv to exclude

This commit is contained in:
Jeh 2023-01-17 11:53:15 +05:30 committed by GitHub
parent 9b2a3636ab
commit 421185c539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
[flake8] [flake8]
max-line-length = 120 max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
[pycodestyle] [pycodestyle]
max-line-length = 120 max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
[isort] [isort]
line_length = 88 line_length = 88
@ -34,7 +34,7 @@ django_settings_module = config.settings.test
ignore_errors = True ignore_errors = True
[coverage:run] [coverage:run]
include = {{cookiecutter.project_slug}}/* include = {{cookiecutter.project_slug}}/**
omit = *migrations*, *tests* omit = *migrations*, *tests*
plugins = plugins =
django_coverage_plugin django_coverage_plugin