mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-06-21 01:48:21 +02:00
Code quality check with tox
This commit is contained in:
22
tox.ini
22
tox.ini
@ -1,9 +1,13 @@
|
||||
[tox]
|
||||
envlist = py36,py37,linters
|
||||
envlist =
|
||||
py36-django22
|
||||
py37-django22
|
||||
linters
|
||||
skipsdist = True
|
||||
|
||||
[testenv]
|
||||
basepython = python3
|
||||
setenv =
|
||||
PYTHONWARNINGS = all
|
||||
deps =
|
||||
-r{toxinidir}/requirements.txt
|
||||
coverage
|
||||
@ -12,11 +16,6 @@ commands =
|
||||
coverage run ./manage.py test {posargs}
|
||||
coverage report -m
|
||||
|
||||
[testenv:pre-commit]
|
||||
deps = pre-commit
|
||||
commands =
|
||||
pre-commit run --all-files --show-diff-on-failure
|
||||
|
||||
[testenv:linters]
|
||||
deps =
|
||||
-r{toxinidir}/requirements.txt
|
||||
@ -26,13 +25,12 @@ deps =
|
||||
flake8-typing-imports
|
||||
pep8-naming
|
||||
pyflakes
|
||||
pylint
|
||||
commands =
|
||||
flake8 app/activity app/member app/note
|
||||
pylint .
|
||||
flake8 apps/activity apps/api apps/member apps/note
|
||||
|
||||
[flake8]
|
||||
ignore = D203, W503, E203
|
||||
# Ignore too many errors, should be reduced in the future
|
||||
ignore = D203, W503, E203, I100, I101
|
||||
exclude =
|
||||
.tox,
|
||||
.git,
|
||||
@ -45,7 +43,7 @@ exclude =
|
||||
.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
|
||||
|
||||
|
Reference in New Issue
Block a user