Commit b3e18b1a authored by Jim Fulton's avatar Jim Fulton

Added separate test scripts for different Python versions, making it

easier to test multiple versions at once.
parent 469cd840
[buildout]
develop = zc.recipe.egg_ .
parts = test py oltest
find-links = http://download.zope.org/distribution
parts =
test2.3 py2.3 oltest2.3
test2.4 py2.4 oltest2.4
test2.5 py2.5 oltest2.5
[py]
[py2.3]
recipe = zc.recipe.egg
eggs = zc.buildout
scripts = py
interpreter = py
scripts = py2.3
interpreter = py2.3
python = python2.3
[test]
[test2.3]
recipe = zc.recipe.testrunner
eggs =
zc.buildout
zc.recipe.egg
python = python2.3
# Tests that can be run wo a network
[oltest]
[oltest2.3]
recipe = zc.recipe.testrunner
eggs =
zc.buildout
......@@ -26,3 +30,61 @@ defaults =
'-t',
'!(bootstrap|selectingpython|selecting-python)',
]
python = python2.3
[py2.4]
recipe = zc.recipe.egg
eggs = zc.buildout
scripts = py2.4
interpreter = py2.4
python = python2.4
[test2.4]
recipe = zc.recipe.testrunner
eggs =
zc.buildout
zc.recipe.egg
python = python2.4
# Tests that can be run wo a network
[oltest2.4]
recipe = zc.recipe.testrunner
eggs =
zc.buildout
zc.recipe.egg
defaults =
[
'-t',
'!(bootstrap|selectingpython|selecting-python)',
]
python = python2.4
[py2.5]
recipe = zc.recipe.egg
eggs = zc.buildout
scripts = py2.5
interpreter = py2.5
python = python2.5
[test2.5]
recipe = zc.recipe.testrunner
eggs =
zc.buildout
zc.recipe.egg
python = python2.5
# Tests that can be run wo a network
[oltest2.5]
recipe = zc.recipe.testrunner
eggs =
zc.buildout
zc.recipe.egg
defaults =
[
'-t',
'!(bootstrap|selectingpython|selecting-python)',
]
python = python2.5
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