summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorgordon chung <gord@live.ca>2015-01-20 18:14:51 -0500
committergordon chung <gord@live.ca>2015-01-20 18:36:18 -0500
commit5a5dbbbee783e0dbfb089cb36523b1df41b76e72 (patch)
tree31ccbfef3128e4a651c2900bf1aaf7d6d3f2819e /tox.ini
parent2ca24af1fb92c85b6e7bf91a8a4cc5686d59bbc4 (diff)
downloadceilometermiddleware-5a5dbbbee783e0dbfb089cb36523b1df41b76e72.tar.gz
initial checkin
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini37
1 files changed, 37 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..7363931
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,37 @@
+[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}
+deps = -r{toxinidir}/requirements.txt
+ -r{toxinidir}/test-requirements.txt
+commands = python setup.py testr --slowest --testr-args='{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:debug]
+commands = oslo_debug_helper {posargs}
+
+[flake8]
+# H803 skipped on purpose per list discussion.
+# E123, E125 skipped as they are invalid PEP-8.
+
+show-source = True
+ignore = E123,E125,H803
+builtins = _
+exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build