mirror of https://gitlab.crans.org/bde/nk20
55 lines
1.0 KiB
INI
55 lines
1.0 KiB
INI
[tox]
|
|
envlist =
|
|
# Debian Buster Python
|
|
py37-django22
|
|
|
|
# Ubuntu 20.04 Python
|
|
py38-django22
|
|
|
|
# Debian Bullseye Python
|
|
py39-django22
|
|
|
|
linters
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
sitepackages = True
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
coverage
|
|
commands =
|
|
coverage run --omit='apps/scripts*,*_example.py,note_kfet/wsgi.py' --source=apps,note_kfet ./manage.py test apps/
|
|
coverage report -m
|
|
|
|
[testenv:linters]
|
|
deps =
|
|
flake8
|
|
flake8-bugbear
|
|
flake8-colors
|
|
flake8-django
|
|
flake8-import-order
|
|
flake8-typing-imports
|
|
pep8-naming
|
|
pyflakes
|
|
commands =
|
|
flake8 apps --extend-exclude apps/scripts
|
|
|
|
[flake8]
|
|
ignore = W503, I100, I101, B019
|
|
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
|