1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 10:53:02 +00:00
Emmy D'Anello 7f8934a647 Drop Python 3.8 support, add Python 3.10 and 3.11 support
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2022-11-08 15:55:09 +01:00

62 lines
1.2 KiB
INI

[tox]
envlist =
py39
py310
py311
linters
skipsdist = True
[testenv]
sitepackages = False
deps =
coverage
Django>=3.2,<4.0
django-address~=0.2
django-bootstrap-datepicker-plus~=4.0
django-crispy-forms~=1.9
django-filter~=2.4
django-haystack~=3.0
django-phonenumber-field~=5.0.0
django-polymorphic~=3.0
django-tables2~=2.4
djangorestframework~=3.12
django-rest-polymorphic~=0.1
phonenumbers~=8.9.10
PyPDF3~=1.0.2
python-magic==0.4.22
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 apps/ 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