548bb86ea6
Fix python3 tox installation so that it uses setuptools by default rather than use distribute. Also bump the version used by teestrepository so that it uses a more python3 compliant version. Change-Id: If2522f12889e66cedc6286d48ba8105c685e6e0e Signed-off-by: Chuck Short <chuck.short@canonical.com>
40 lines
748 B
INI
40 lines
748 B
INI
[tox]
|
|
distribute = False
|
|
envlist = py26,py27,py33,pep8
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
LANG=en_US.UTF-8
|
|
LANGUAGE=en_US:en
|
|
LC_ALL=C
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
python setup.py testr --slowest --testr-args='{posargs}'
|
|
|
|
[tox:jenkins]
|
|
sitepackages = True
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:integration]
|
|
commands =
|
|
bash integration-test/test.sh {posargs}
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
commands =
|
|
python setup.py testr --coverage
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
exclude = .venv,.tox,dist,doc,*.egg,build
|
|
show-source = true
|
|
|
|
[hacking]
|
|
local-check = hacking.tests.test_local.check
|