xppl/tox.ini
Luke Murphy 0f76d1acad
Get dummy test suite in place.
At least isort/pylava are passing.
2018-11-18 11:58:22 +01:00

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