
This commit fixes all the issues with the tox jobs. I initially wrote this project outside of the openstack infrastructure and played kinda hard and fast with anything from tox. To correct this I need to add sphinx docs, a pro forma test to (and the preresiquite testr boilerplate), and a bunch of random pep8 fixes. Change-Id: I9946fc7db5c030b5860f03b45471f70c1fc4efb1
37 lines
789 B
INI
37 lines
789 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py33,py34,py26,py27,pypy,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
whitelist_externals = find
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
ostestr {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
|
|
|
|
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
|
|
show-source = True
|
|
ignore = E123,E125,E129
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|