Commit b8330731 authored by Jérome Perrin's avatar Jérome Perrin

test_standalone: use buildout:newest=false in test profiles

Otherwise buildout will download latest version of eggs, which in the
case of setuptools now pulls version 45 which is no longer compatible
with python 2 and causes failures.
parent 682d35fc
...@@ -277,6 +277,7 @@ class TestSlapOSStandaloneSoftware(SlapOSStandaloneTestCase): ...@@ -277,6 +277,7 @@ class TestSlapOSStandaloneSoftware(SlapOSStandaloneTestCase):
''' '''
[buildout] [buildout]
parts = instance parts = instance
newest = false
[instance] [instance]
recipe = plone.recipe.command==1.1 recipe = plone.recipe.command==1.1
command = touch ${buildout:directory}/instance.cfg command = touch ${buildout:directory}/instance.cfg
...@@ -312,6 +313,7 @@ class TestSlapOSStandaloneSoftware(SlapOSStandaloneTestCase): ...@@ -312,6 +313,7 @@ class TestSlapOSStandaloneSoftware(SlapOSStandaloneTestCase):
''' '''
[buildout] [buildout]
parts = error parts = error
newest = false
[error] [error]
recipe = plone.recipe.command==1.1 recipe = plone.recipe.command==1.1
command = bash -c "exit 123" command = bash -c "exit 123"
...@@ -353,6 +355,7 @@ class TestSlapOSStandaloneInstance(SlapOSStandaloneTestCase): ...@@ -353,6 +355,7 @@ class TestSlapOSStandaloneInstance(SlapOSStandaloneTestCase):
''' '''
[buildout] [buildout]
parts = instance parts = instance
newest = false
[instance] [instance]
recipe = plone.recipe.command==1.1 recipe = plone.recipe.command==1.1
......
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