zaqar/tox.ini
Clark Boylan a72a0bd988 Workaround pypy bug on trusty when running tests
https://bitbucket.org/pypy/pypy/issue/1694/ affects zaqar when running
pypy tests on trusty slave nodes. We can work around that bug by setting
--jit off when running the pypy interpreter. Do this until the upstream
bug fix is backported into trusty.

Change-Id: Iebaa167e9e12bbc1017371929ca8c182bacc2aad
Related-Bug: 1368418
2014-09-11 13:40:30 -07:00

60 lines
1.4 KiB
INI

[tox]
minversion = 1.6
envlist = py26,py27,py33,py34,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}
ZAQAR_TESTS_DIR={toxinidir}/tests
ZAQAR_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}'
[testenv:py27]
setenv = ZAQAR_TEST_MONGODB=1
[testenv:py33]
deps = -r{toxinidir}/requirements-py3.txt
-r{toxinidir}/test-requirements-py3.txt
[testenv:py34]
deps = -r{toxinidir}/requirements-py3.txt
-r{toxinidir}/test-requirements-py3.txt
[testenv:pypy]
setenv = VIRTUAL_ENV={envdir}
ZAQAR_TESTS_DIR={toxinidir}/tests
ZAQAR_TESTS_CONFIGS_DIR={toxinidir}/tests/etc/
JIT_FLAG=--jit off
[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}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
exclude = .venv*,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*.egg,.update-venv
[hacking]
import_exceptions = zaqar.openstack.common.gettextutils._,zaqar.i18n._