Commit b3daf23d authored by Roque Porchetto's avatar Roque Porchetto

Buildout points to right repos. New auto-test.

parent 642e8796
......@@ -7,7 +7,18 @@ parts +=
[eggs]
eggs +=
mne
[erp5]
recipe = slapos.recipe.build:gitclone
repository = https://lab.nexedi.com/nexedi/erp5.git
branch = portal_callables
git-executable = ${git:location}/bin/git
[wendelin]
<= erp5
repository = https://lab.nexedi.com/klaus/wendelin.git
branch = master
[telecom]
<= erp5
repository = https://gitlab-ci-token:D6mznxrE2KjtqkPjRab7@lab.nexedi.com/rporchetto/telecom.git
......@@ -17,4 +28,4 @@ branch = master
repository_id_list += telecom
[local-bt5-repository]
list = ${erp5:location}/bt5 ${erp5:location}/product/ERP5/bootstrap ${telecom:location}/bt5
\ No newline at end of file
list = ${erp5:location}/bt5 ${erp5:location}/product/ERP5/bootstrap ${wendelin:location}/bt5 ${telecom:location}/bt5
\ No newline at end of file
from test_suite import ERP5TypeTestSuite
import glob
import os.path
import re
HERE = os.path.dirname(__file__)
BT5 = os.path.join(os.path.split(HERE)[0],'bt5')
class WendelinERP5(ERP5TypeTestSuite):
def getTestList(self):
component_re = re.compile(".*/([^/]+)/TestTemplateItem/portal_components"
"/test\.[^.]+\.([^.]+).py$")
return ['%s:%s' % (x.group(1), x.group(2)) \
for x in [component_re.match(y) for y in glob.glob(os.path.join(
BT5, '*', '*', '*', 'test.erp5.test*.py'))]]
\ No newline at end of file
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