25 lines
473 B
INI
25 lines
473 B
INI
[isort]
|
|
multi_line_output = 5
|
|
skip = .tox,build/*
|
|
|
|
[pylava]
|
|
skip = .tox/*,build/*
|
|
|
|
[pylava:mccabe]
|
|
complexity = 15
|
|
|
|
[tox]
|
|
skipsdist = True
|
|
envlist = py36
|
|
|
|
[testenv]
|
|
setenv =
|
|
PIPENV_IGNORE_VIRTUALENVS = 1
|
|
deps =
|
|
pipenv
|
|
commands =
|
|
pipenv install --dev
|
|
pipenv run pylava . --options=tox.ini
|
|
pipenv run isort --quiet --recursive --check-only --diff --settings-path=tox.ini
|
|
# pipenv run pytest {posargs: tests} # Note(decentral1se): add when we have tests
|