Files
deb-python-dcos/cli/tox.ini
2015-04-20 14:34:18 -07:00

28 lines
436 B
INI

[tox]
envlist = py{27,34}-integration, syntax
[testenv]
deps =
pytest
pytest-cov
mock
-e..
[testenv:syntax]
deps =
flake8
isort
..
commands =
flake8 --verbose dcoscli tests setup.py
isort --recursive --check-only --diff --verbose dcoscli tests setup.py
[testenv:py27-integration]
commands =
py.test -vv tests/integrations{posargs}
[testenv:py34-integration]
commands =
py.test -vv tests/integrations{posargs}