c6d94844b8
With the recent addition of pypowervm to upper-constraints, installs of nova-powervm are now by default enforcing the version set there. Since the master branch of nova-powervm depends on the develop version of pypowervm, this causes installs to fail. This changeset adds a wrapper script (tox_install.sh) that edits the upper-constraints file and replaces the pypowervm version pin then sets pypowervm to be installed from source instead. Change-Id: Id8e117bc6a7b1b224a9e86e9b29821627adb51db
42 lines
1.1 KiB
INI
42 lines
1.1 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py34,py27,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command =
|
|
{toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-egit+https://github.com/openstack/nova#egg=nova
|
|
whitelist_externals = bash
|
|
commands = bash tools/pretty_tox.sh '{posargs}'
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py testr --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:bashate]
|
|
commands =
|
|
bash -c "ls devstack/*.sh | xargs bashate -v {posargs}"
|
|
whitelist_externals = bash
|
|
|
|
[flake8]
|
|
# N342 - Config Opts need to be outside nova/conf until powervm is part of nova proper
|
|
ignore = E125,N342
|
|
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools
|
|
|
|
[hacking]
|
|
local-check-factory = nova_powervm.hacking.checks.factory
|