1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-06 10:13:01 +00:00

57 lines
1.1 KiB
INI
Raw Permalink Normal View History

2020-09-24 11:44:43 +02:00
[tox]
envlist =
2020-10-09 14:17:17 +02:00
py38
2020-10-09 14:13:10 +02:00
py39
2020-09-24 11:44:43 +02:00
linters
skipsdist = True
[testenv]
sitepackages = False
2020-09-24 11:44:43 +02:00
deps =
coverage
Django~=3.1
django-bootstrap-datepicker-plus~=3.0
django-crispy-forms~=1.9
django-filter~=2.3
django-haystack~=3.0
django-polymorphic~=3.0
django-tables2~=2.3
djangorestframework~=3.12
django-rest-polymorphic~=0.1
python-magic~=0.4
whoosh~=2.7
2020-09-24 11:44:43 +02:00
commands =
coverage run --source=apps,corres2math ./manage.py test apps/ corres2math/
2020-09-24 11:44:43 +02:00
coverage report -m
[testenv:linters]
deps =
flake8
flake8-colors
flake8-django
flake8-import-order
flake8-typing-imports
pep8-naming
pyflakes
commands =
2020-11-03 18:16:36 +01:00
flake8 apps/ corres2math/
2020-09-24 11:44:43 +02:00
[flake8]
exclude =
.tox,
.git,
__pycache__,
build,
dist,
*.pyc,
*.egg-info,
.cache,
.eggs,
*migrations*
max-complexity = 10
2020-09-24 11:44:43 +02:00
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