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