d22378da76
Add a script to extract the ironic_tempest_plugin/ directory from the openstack/ironic repository. Then cherry-pick all of those commits into this repository. Also make ironic_tempest_plugins/__init__.py an empty file so 'diff' will be correct. Remove the following files, so 'diff' will be correct: ironic_tempest_plugin/tests/base.py ironic_tempest_plugin/tests/test_ironic_tempest_plugin.py Ignore E129 errors in flake8, like we do in Ironic. As it will fail pep8 when we import all the upcoming patches. Change-Id: I1625128717c8a848c6d673314b09d0a6c9c96679
36 lines
841 B
INI
36 lines
841 B
INI
[tox]
|
|
minversion = 2.0
|
|
envlist = py34,py27,pypy,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py test --slowest --testr-args='{posargs}'
|
|
|
|
[testenv:pep8]
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py test --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:debug]
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[flake8]
|
|
ignore = E129
|
|
|
|
show-source = True
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
|