Varia library working group XPPL.
https://gitea.xpub.nl/XPUB/XPPL
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
473 B
25 lines
473 B
6 years ago
|
[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
|