28 lines
596 B
INI
28 lines
596 B
INI
[tox]
|
|
envlist = py34-syntax, py{27,34}-unit
|
|
|
|
[testenv]
|
|
deps =
|
|
teamcity-messages
|
|
pytest
|
|
pytest-cov
|
|
passenv = DCOS_* CI_FLAGS CLI_TEST_SSH_KEY_PATH
|
|
|
|
[testenv:py34-syntax]
|
|
deps =
|
|
teamcity-messages
|
|
flake8
|
|
isort
|
|
|
|
commands =
|
|
flake8 --verbose {env:CI_FLAGS:} dcos tests setup.py
|
|
isort --recursive --check-only --diff --verbose dcos tests setup.py
|
|
|
|
[testenv:py27-unit]
|
|
commands =
|
|
py.test -p no:cacheprovider -vv {env:CI_FLAGS:} --cov {envsitepackagesdir}/dcos tests
|
|
|
|
[testenv:py34-unit]
|
|
commands =
|
|
py.test -p no:cacheprovider -vv {env:CI_FLAGS:} --cov {envsitepackagesdir}/dcos tests
|