Commit 657b562b authored by Kai Lautaportti's avatar Kai Lautaportti

On Python 2.x test using zc.buildout 1.x and 2.x.

parent 62db9618
...@@ -4,26 +4,46 @@ ...@@ -4,26 +4,46 @@
# and then run "tox" from this directory. # and then run "tox" from this directory.
[tox] [tox]
envlist = py26, py27, py32, py33 envlist = py26, py26-buildout2, py27, py27-buildout2, py32, py33
[base]
deps =
zope.testing
manuel
[testenv] [testenv]
commands = python setup.py test commands = python setup.py test
deps = deps =
zc.buildout<2.0.0 zc.buildout<2.0.0
{[base]deps}
[testenv:py26] [testenv:py26]
deps = deps =
zc.buildout<2.0.0 zc.buildout<2.0.0
{[base]deps}
unittest2
[testenv:py26-buildout2]
deps =
zc.buildout>=2.0.0
{[base]deps}
unittest2 unittest2
[testenv:py27]
deps = {[base]deps}
[testenv:py27-buildout2]
basepython = python2.7
deps =
zc.buildout>=2.0.0
{[base]deps}
[testenv:py32] [testenv:py32]
deps = deps =
zc.buildout>=2.0.0 zc.buildout>=2.0.0
zope.testing {[base]deps}
manuel
[testenv:py33] [testenv:py33]
deps = deps =
zc.buildout>=2.0.0 zc.buildout>=2.0.0
zope.testing {[base]deps}
manuel
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