Commit a84c63e2 authored by Boxiang Sun's avatar Boxiang Sun

Only run erp5 user tutorial test

parent 0eeffeea
...@@ -36,9 +36,7 @@ class _ERP5(ERP5TypeTestSuite): ...@@ -36,9 +36,7 @@ class _ERP5(ERP5TypeTestSuite):
component_re = re.compile(".*/([^/]+)/TestTemplateItem/portal_components" component_re = re.compile(".*/([^/]+)/TestTemplateItem/portal_components"
"/test\.[^.]+\.([^.]+).py$") "/test\.[^.]+\.([^.]+).py$")
for test_path in chain( for test_path in chain(
glob(path + '/product/*/tests/test*.py'), glob('%s/bt5/erp5_user_tutorial/TestTemplateItem/portal_components/test.*.test*.py' % path)):
glob(path + '/bt5/*/TestTemplateItem/test*.py'),
glob(path + '/bt5/*/TestTemplateItem/portal_components/test.*.test*.py')):
component_re_match = component_re.match(test_path) component_re_match = component_re.match(test_path)
if component_re_match is not None: if component_re_match is not None:
test_case = "%s:%s" % (component_re_match.group(1), test_case = "%s:%s" % (component_re_match.group(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