zaqar/tox.ini
Flavio Percoco e82e5fe3c0 Use testr instead of nosetest
This patch removes the dependency on nosetest and uses testrepository as
a test runner. There are some advantages behind this change:

    - Better tests execution
    - Better tests concurrency
    - Less dependencies

Change-Id: I1985bdf03137d32a0774321d8dec5cb015dc9d2f
2014-01-17 15:43:49 +01:00

39 lines
957 B
INI

[tox]
minversion = 1.6
envlist = py26,py27,py33,pypy,pep8
skipsdist = True
[testenv]
usedevelop = True
# Customize pip command, add -U to force updates.
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
MARCONI_TESTS_DIR={toxinidir}/tests
MARCONI_TESTS_CONFIGS_DIR={toxinidir}/tests/etc/
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
#commands = nosetests {posargs}
commands = python setup.py testr --slowest --testr-args='--concurrency 1 {posargs}'
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
commands = flake8
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1
commands =
python setup.py testr --coverage \
--testr-args='^(?!.*test.*coverage).*$'
[testenv:venv]
commands = {posargs}
[flake8]
exclude = .venv*,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*.egg,.update-venv
[hacking]
import_exceptions = marconi.openstack.common.gettextutils._