summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephan Richter <stephan.richter@gmail.com>2014-02-04 23:21:20 -0500
committerStephan Richter <stephan.richter@gmail.com>2014-02-04 23:21:20 -0500
commitffcf2887646c268c104ee2aa7bb3c087d691149b (patch)
tree5f38d9e31502bc5471e9ff8d2a54bea2350ca9b9 /tox.ini
parentd76f739a0e27e26d9fd37093549b277e9d2098ba (diff)
downloadzope-interface-ffcf2887646c268c104ee2aa7bb3c087d691149b.tar.gz
Make Python 2.7 run coverage tests and doc generation.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini14
1 files changed, 7 insertions, 7 deletions
diff --git a/tox.ini b/tox.ini
index 9df416f..cba029c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,17 +1,17 @@
[tox]
-envlist =
+envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py26,py27,py32,jython,pypy,coverage
py26,py27,py32,py33,pypy,coverage,docs
[testenv]
-commands =
+commands =
python setup.py test -q
deps = zope.event
[testenv:jython]
-commands =
+commands =
jython setup.py test -q
[testenv:py32]
@@ -19,8 +19,8 @@ deps = zope.event
[testenv:coverage]
basepython =
- python2.6
-commands =
+ python2.7
+commands =
nosetests --with-xunit --with-xcoverage
deps =
nose
@@ -29,8 +29,8 @@ deps =
[testenv:docs]
basepython =
- python2.6
-commands =
+ python2.7
+commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
deps =