plateforme-tfjm2/tox.ini

62 lines
1.2 KiB
INI

[tox]
envlist =
py39
py310
py311
linters
skipsdist = True
[testenv]
sitepackages = False
deps =
coverage
crispy-bootstrap5~=0.7
Django>=4.1,<5.0
django-crispy-forms~=1.14
django-filter~=22.1
django-haystack~=3.2
django-phonenumber-field~=7.0
django-polymorphic~=3.1
django-tables2~=2.4
djangorestframework~=3.14
django-rest-polymorphic~=0.1
phonenumbers~=8.12.57
pypdf~=3.4
python-magic~=0.4.26
requests~=2.28.1
whoosh~=2.7
commands =
coverage run --source=apps,tfjm ./manage.py test apps/ tfjm/
coverage report -m
[testenv:linters]
deps =
flake8
flake8-colors
flake8-django
flake8-import-order
flake8-typing-imports
pep8-naming
pyflakes
commands =
flake8 api/ logs/ participation/ registration/ tfjm/
[flake8]
exclude =
.tox,
.git,
__pycache__,
build,
dist,
*.pyc,
*.egg-info,
.cache,
.eggs,
*migrations*
max-complexity = 10
max-line-length = 160
import-order-style = google
application-import-names = flake8
#format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s