[tox]
envlist =
    py310
    py311

    linters
skipsdist = True

[testenv]
sitepackages = False
deps =
    coverage
    channels[daphne]~=4.0.0
    crispy-bootstrap5~=0.7
    Django>=4.2,<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
    odfpy~=1.4.1
    phonenumbers~=8.12.57
    pypdf~=3.4
    python-magic~=0.4.26
    requests~=2.28.1
    whoosh~=2.7
commands =
    coverage run --source=api,draw,logs,participation,registration,tfjm ./manage.py test api/ draw/ logs/ participation/ registration/ tfjm/
    coverage report -m

[testenv:linters]
deps =
    flake8
    flake8-colors
    flake8-django
    flake8-import-order
    flake8-typing-imports
    pep8-naming
    pyflakes
commands =
    flake8 api/ draw/ logs/ participation/ registration/ tfjm/

[flake8]
exclude =
    .tox,
    .git,
    __pycache__,
    build,
    dist,
    *.pyc,
    *.egg-info,
    .cache,
    .eggs,
    *migrations*
max-complexity = 15
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