You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
882 B
INI

[tox]
envlist =
py3
linters
skipsdist = True
[testenv]
sitepackages = False
deps =
coverage
authlib~=0.15
Django~=3.1
django-crispy-forms~=1.9
django-polymorphic~=3.0
django-tables2~=2.3
commands =
coverage run --source=lglog,lg ./manage.py test lglog/ lg/
coverage report -m
[testenv:linters]
deps =
flake8
flake8-colors
flake8-django
flake8-import-order
flake8-typing-imports
pep8-naming
pyflakes
commands =
flake8 lglog/ lg/
[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