Commit 7c33b3cb authored by Tres Seaver's avatar Tres Seaver

DRY out tox deps.

parent 2948746c
...@@ -2,26 +2,26 @@ ...@@ -2,26 +2,26 @@
envlist = py26,py27,pypy,py33,py34 envlist = py26,py27,pypy,py33,py34
[testenv] [testenv]
commands = python setup.py test -q commands = python setup.py -q test -q
deps = deps =
zope.publisher
zope.testrunner
zope.testing
six six
zope.interface persistent
BTrees
zope.event
zope.dottedname zope.dottedname
zope.schema zope.i18nmessageid
zope.interface
zope.component zope.component
zope.event zope.schema
zope.location zope.location
zope.security zope.security
zope.lifecycleevent zope.lifecycleevent
zope.i18nmessageid
zope.filerepresentation zope.filerepresentation
zope.size zope.size
zope.traversing zope.traversing
persistent zope.publisher
BTrees zope.testrunner
zope.testing
[testenv:coverage] [testenv:coverage]
basepython = basepython =
...@@ -30,28 +30,11 @@ commands = ...@@ -30,28 +30,11 @@ commands =
# The installed version messes up nose's test discovery / coverage reporting # The installed version messes up nose's test discovery / coverage reporting
# So, we uninstall that from the environment, and then install the editable # So, we uninstall that from the environment, and then install the editable
# version, before running nosetests. # version, before running nosetests.
pip uninstall -y zope.container pip -q uninstall -y zope.container
pip install -e . pip -q install -e .
nosetests --with-xunit --with-xcoverage nosetests --with-xunit --with-xcoverage
deps = deps =
{[testenv]deps}
nose nose
coverage coverage
nosexcover nosexcover
zope.testrunner
zope.testing
six
zope.interface
zope.dottedname
zope.schema
zope.component
zope.event
zope.location
zope.security>=4.0.0a3
zope.lifecycleevent
zope.i18nmessageid
zope.filerepresentation
zope.size
zope.traversing
zope.publisher
persistent
BTrees
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment