
This change set supports bringing in the python powervm REST API library for initial use within ceilometer-powervm. This change also fixes pep8 issues, mainly around the copyright rules that are needed (do not copyright empty files). Also updates the tox file such that we run the new oslo concurrency as ceilometer removed the integrated package. Change-Id: I12739ca702e004cd048067ad25e9e07d1ef106e6
38 lines
1.0 KiB
INI
38 lines
1.0 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py27,py33,pep8
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
PYTHONHASHSEED=0
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-egit+https://github.com/openstack/ceilometer#egg=ceilometer
|
|
-egit+ssh://***REMOVED***:29418/python-powervm.git#egg=python-powervm
|
|
commands = python -m oslo.concurrency.lockutils python setup.py testr --slowest --testr-args="{posargs}"
|
|
downloadcache = {toxworkdir}/_download
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python -m ceilometer.openstack.common.lockutils python setup.py testr --slowest --coverage --testr-args="{posargs}"
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
ignore = H305
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,nova_tests,build
|
|
show-source = true
|
|
|
|
[hacking]
|
|
import_exceptions = ceilometer.openstack.common.gettextutils
|