Permalink
Fetching contributors…
Cannot retrieve contributors at this time
26 lines (22 sloc) 490 Bytes
[tox]
skipsdist = True
envlist = lint,py3
[testenv]
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test_requirements.txt
commands = nosetests {posargs}
[testenv:lint]
basepython = python3
envdir = {toxinidir}/.tox/py3
commands = flake8 {toxinidir}/charms {toxinidir}/tests
[flake8]
ignore=
# This project has lines longer than 79 characters
E501,
# Lambdas are often more readable, if used carefully
E731
exclude=
.git,
__pycache__
max-complexity=10