Simplify our test environments

This commit is contained in:
Ian Cordasco 2016-06-30 20:09:46 -05:00
parent cde783d135
commit 41cd67f747
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

16
tox.ini
View file

@ -28,9 +28,7 @@ commands =
# Linters
[testenv:flake8]
skipsdist = true
skip_install = true
use_develop = false
deps =
flake8
flake8-docstrings>=0.2.7
@ -40,9 +38,7 @@ commands =
[testenv:pylint]
basepython = python3
skipsdist = true
skip_install = true
use_develop = false
deps =
pyflakes
pylint
@ -51,9 +47,7 @@ commands =
[testenv:doc8]
basepython = python3
skipsdist = true
skip_install = true
use_develop = false
deps =
sphinx
doc8
@ -62,9 +56,7 @@ commands =
[testenv:mypy]
basepython = python3
skipsdist = true
skip_install = true
use_develop = false
deps =
mypy-lang
commands =
@ -72,9 +64,7 @@ commands =
[testenv:bandit]
basepython = python3
skipsdist = true
skip_install = true
use_develop = false
deps =
bandit
commands =
@ -82,9 +72,7 @@ commands =
[testenv:linters]
basepython = python3
skipsdist = true
skip_install = true
use_develop = false
deps =
{[testenv:flake8]deps}
{[testenv:pylint]deps}
@ -108,9 +96,7 @@ commands =
[testenv:serve-docs]
basepython = python3
skipsdist = true
skip_install = true
use_develop = false
changedir = docs/build/html
deps =
commands =
@ -124,10 +110,8 @@ commands =
python setup.py check -r -s
[testenv:release]
skipsdist = true
basepython = python3
skip_install = true
use_develop = false
deps =
wheel
setuptools