summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorThiago da Silva <thiago@redhat.com>2013-10-30 15:43:27 -0400
committerThiago da Silva <thiago@redhat.com>2013-10-30 15:48:24 -0400
commit3f2233ba01c74681ef565285a32fa8bcea8357e9 (patch)
treeb63daed43faa4cf520833d7521055ad1d237e36d /tox.ini
parent055e0c6c65726da27e1c7e0ec0aaeaba507e1563 (diff)
initial repo tree with gfapi.py
This initial commit is a copy from gluster/api/examples/gfapi.py from the glusterfs repo Signed-off-by: Thiago da Silva <thiago@redhat.com> Change-Id: I4442528d5bc2ec52ed2970b818d8cb9327e36168
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..657412f
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,37 @@
+[tox]
+envlist = py26,py27,pep8
+
+[testenv]
+setenv = VIRTUAL_ENV={envdir}
+ NOSE_WITH_OPENSTACK=1
+ NOSE_OPENSTACK_COLOR=1
+ NOSE_OPENSTACK_RED=0.05
+ NOSE_OPENSTACK_YELLOW=0.025
+ NOSE_OPENSTACK_SHOW_ELAPSED=1
+ NOSE_OPENSTACK_STDOUT=1
+changedir = {toxinidir}/test/unit
+commands = nosetests -v --exe --with-xunit --with-coverage --cover-package gluster --cover-erase --cover-xml --cover-html --cover-branches --with-html-output {posargs}
+
+[tox:jenkins]
+downloadcache = ~/cache/pip
+
+[testenv:pep8]
+deps =
+ --download-cache={homedir}/.pipcache
+ -r{toxinidir}/tools/test-requires
+changedir = {toxinidir}
+commands =
+ flake8
+ flake8 gluster test
+
+[testenv:cover]
+setenv = NOSE_WITH_COVERAGE=1
+
+[testenv:venv]
+commands = {posargs}
+
+[flake8]
+ignore = H
+builtins = _
+exclude = .venv,.tox,dist,doc,test,*egg
+show-source = True