6cc6019ace
Modules held back: - openstack.common.policy. Bug #1268315. Compatibility changes made: - Additional arguments added to the Context object - RPC Services no longer need to explicitly wait on the rpc consumer thread - Our openstack-common.conf file explicitly includes transitive dependencies. This is no longer necessary. Bug #1268314. Additional changes still necessary: - We use some depreciated modules (WSGI), we need to remove our dependence on these. Bug #1268313. Change-Id: Ia52b386a928e1d03709dfdb23f0d504c7d01bc19 Oslo-SHA1: 8710dbacfd7d8dad58fccbdd4ffda7246dcbbb7c Closes-Bug: 1268314
35 lines
731 B
INI
35 lines
731 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py26,py27,flake8
|
|
skipsdist = True
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py testr --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:flake8]
|
|
commands = flake8
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:pyflakes]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
ignore = H302,H306,H401,H402,H404
|
|
builtins = _
|
|
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*openstack/deprecated*,*lib/python*,*egg,build,tools
|