Skip to content
Snippets Groups Projects
tox.ini 1.2 KiB
Newer Older
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
[tox]
envlist =
    py36-django22
    py37-django22
    linters
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
skipsdist = True

[testenv]
setenv =
	PYTHONWARNINGS = all
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
deps =
    -r{toxinidir}/requirements/base.txt
    -r{toxinidir}/requirements/cas.txt
    -r{toxinidir}/requirements/production.txt
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
    coverage
commands =
    ./manage.py makemigrations
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
    coverage run ./manage.py test {posargs}
    coverage report -m

[testenv:linters]
deps =
    -r{toxinidir}/requirements/base.txt
    -r{toxinidir}/requirements/cas.txt
    -r{toxinidir}/requirements/production.txt
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
    flake8
    flake8-colors
    flake8-import-order
    flake8-typing-imports
    pep8-naming
    pyflakes
commands =
ynerant's avatar
ynerant committed
    flake8 apps/activity apps/api apps/logs apps/member apps/note apps/permission apps/treasury apps/wei
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed

[flake8]
# Ignore too many errors, should be reduced in the future
ignore = D203, W503, E203, I100, I101, C901
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
exclude =
    .tox,
    .git,
    __pycache__,
    build,
    dist,
    *.pyc,
    *.egg-info,
    .cache,
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
    .eggs,
    *migrations*
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
max-complexity = 10
max-line-length = 160
me5na7qbjqbrp's avatar
me5na7qbjqbrp committed
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