2020-12-27 10:49:54 +00:00
|
|
|
[tox]
|
|
|
|
envlist =
|
2022-11-08 14:55:09 +00:00
|
|
|
py311
|
2024-01-13 18:00:46 +00:00
|
|
|
py312
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
linters
|
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
sitepackages = False
|
2024-02-25 18:14:00 +00:00
|
|
|
deps = coverage
|
|
|
|
-r requirements.txt
|
2024-01-13 16:21:55 +00:00
|
|
|
|
2020-12-27 10:49:54 +00:00
|
|
|
commands =
|
2024-02-25 18:14:00 +00:00
|
|
|
python manage.py compilemessages -i .tox -i venv
|
2024-04-28 15:04:34 +00:00
|
|
|
coverage run --source=api,draw,logs,participation,registration,tfjm ./manage.py test api/ chat/ draw/ logs/ participation/ registration/ tfjm/
|
2020-12-27 10:49:54 +00:00
|
|
|
coverage report -m
|
|
|
|
|
|
|
|
[testenv:linters]
|
|
|
|
deps =
|
|
|
|
flake8
|
|
|
|
flake8-colors
|
|
|
|
flake8-django
|
|
|
|
flake8-import-order
|
|
|
|
flake8-typing-imports
|
|
|
|
pep8-naming
|
|
|
|
pyflakes
|
|
|
|
commands =
|
2024-04-28 15:04:34 +00:00
|
|
|
flake8 api/ chat/ draw/ logs/ participation/ registration/ tfjm/
|
2020-12-27 10:49:54 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
exclude =
|
|
|
|
.tox,
|
|
|
|
.git,
|
|
|
|
__pycache__,
|
|
|
|
build,
|
|
|
|
dist,
|
|
|
|
*.pyc,
|
|
|
|
*.egg-info,
|
|
|
|
.cache,
|
|
|
|
.eggs,
|
|
|
|
*migrations*
|
2023-04-05 15:52:46 +00:00
|
|
|
max-complexity = 15
|
2020-12-27 10:49:54 +00:00
|
|
|
max-line-length = 160
|
|
|
|
import-order-style = google
|
|
|
|
application-import-names = flake8
|
2022-11-08 14:52:44 +00:00
|
|
|
#format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s
|