summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJames E. Blair <jeblair@openstack.org>2013-04-26 08:40:46 -0700
committerJames E. Blair <jeblair@openstack.org>2013-05-09 21:00:50 -0700
commit1f4c2bb1046d428e67cdb089942f687ae78ad0e1 (patch)
tree9fb82e55db8fe835e0dd6a88f9277b9a592134c3 /tox.ini
parentbdafe495db7b6d8bcf05c405a326f656f07bc4e2 (diff)
downloadzuul-1f4c2bb1046d428e67cdb089942f687ae78ad0e1.tar.gz
Switch the launcher to Gearman.
Remove the Jenkins launcher and add a new Gearman launcher (designed to be compatible with Jenkins) in its place. See the documentation for how to set up the Gearman Plugin for Jenkins. Change-Id: Ie7224396271d7375f4ea42eebb57f883bc291738
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index e8d5c1a27..0d4969351 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,13 +7,14 @@ setenv = STATSD_HOST=localhost
STATSD_PORT=8125
deps = -r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
-commands = nosetests {posargs}
+commands = nosetests --logging-format="%(asctime)s %(name)-32s %(levelname)-8s %(message)s" {posargs}
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
deps = pep8==1.3.3
+ -r{toxinidir}/tools/pip-requires
commands = pep8 --ignore=E123,E125,E128 --repeat --show-source --exclude=.venv,.tox,dist,doc,build .
[testenv:cover]
@@ -21,6 +22,7 @@ setenv = NOSE_WITH_COVERAGE=1
[testenv:pyflakes]
deps = pyflakes
+ -r{toxinidir}/tools/pip-requires
commands = pyflakes zuul setup.py
[testenv:venv]