Install all dependencies in tox (& flake8 rules).
This commit is contained in:
parent
bc10bd9a4d
commit
e3628ee751
1 changed files with 7 additions and 0 deletions
7
tox.ini
7
tox.ini
|
@ -11,8 +11,15 @@ commands = py.test --cov=dosage --cov=dosagelib --tb=short -n10
|
||||||
passenv = TRAVIS
|
passenv = TRAVIS
|
||||||
# Also install optional dependencies for tests.
|
# Also install optional dependencies for tests.
|
||||||
deps =
|
deps =
|
||||||
|
-r{toxinidir}/requirements.txt
|
||||||
pytest-xdist
|
pytest-xdist
|
||||||
pytest-cov
|
pytest-cov
|
||||||
pytest-travis-fold
|
pytest-travis-fold
|
||||||
cssselect
|
cssselect
|
||||||
Pillow
|
Pillow
|
||||||
|
|
||||||
|
[flake8]
|
||||||
|
# we aim for 79, but this suppresses warnings for now...
|
||||||
|
max-line-length = 120
|
||||||
|
ignore = E121,E126,E241
|
||||||
|
exclude = build
|
||||||
|
|
Loading…
Reference in a new issue