Files
python-ceilometerclient/tox.ini
Julien Danjou bac85a832e Revert "Delete python bytecode before every test run"
I don't like recompiling my Python files on each run.

This reverts commit ce8957f04f.

Change-Id: I34cd22d249a201d3f5c948075dbd762085818cab
2015-12-03 09:04:52 +00:00

38 lines
803 B
INI

[tox]
envlist = py34,py26,py27,pypy,pep8
minversion = 1.6
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
python setup.py testr --slowest --testr-args='{posargs}'
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
commands = flake8
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'
[testenv:venv]
commands = {posargs}
[testenv:functional]
setenv = OS_TEST_PATH=./ceilometerclient/tests/functional
passenv = OS_*
[testenv:docs]
commands=
python setup.py build_sphinx
[flake8]
show-source = True
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools