Commit a927cc96 authored by Rafael Monnerat's avatar Rafael Monnerat

testSlapOSMixin: always set bt5_repository_url during site creation

parent 55924bea
......@@ -344,6 +344,13 @@ class testSlapOSMixin(ERP5TypeTestCase):
self.getExpectedBusinessTemplateInstalledAfterConfiguration())
return result
def _getSiteCreationParameterDict(self):
kw = super(testSlapOSMixin, self)._getSiteCreationParameterDict()
bt5_repository_path_list = self._getBusinessRepositoryPathList(
['erp5_core'] + list(self.getBusinessTemplateList()))
kw["bt5_repository_url"] = " ".join(bt5_repository_path_list)
return kw
class TestSlapOSDummy(testSlapOSMixin):
run_all_test = 1
def test(self):
......
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