Files
deb-python-dcos/tox.ini
José Armando García Sancio 004d1c2213 tests: update to use latest universe (#952)
We also needed to update the CI environments to support UTF-8 encoding because the output printed by the CLI could be encoded using UTF-8.
2017-04-20 09:23:19 -07:00

34 lines
545 B
INI

[tox]
envlist = py35-syntax, py35-unit
[flake8]
application-import-names=dcos
import-order-style=smarkets
[testenv]
deps =
mock
pytest
pytest-cov
teamcity-messages
passenv =
DCOS_*
CI_FLAGS
CLI_TEST_SSH_KEY_PATH
TEAMCITY_VERSION
PYTHONIOENCODING
[testenv:py35-syntax]
deps =
flake8
flake8-import-order==0.9.2
pep8-naming
commands =
flake8 --verbose {env:CI_FLAGS:} dcos tests setup.py
[testenv:py35-unit]
commands =
py.test -p no:cacheprovider -vv {env:CI_FLAGS:} --cov {envsitepackagesdir}/dcos tests{posargs}