From 7935b599bf9bd7235226950e9cf79527548e6ef4 Mon Sep 17 00:00:00 2001 From: Sven Franck <sven.franck@nexedi.com> Date: Fri, 21 Sep 2018 10:11:21 +0200 Subject: [PATCH] HARDCODE: reduce tests --- tests/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/__init__.py b/tests/__init__.py index b2b4b116e4..d7dfb7b117 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -35,9 +35,10 @@ class _ERP5(ERP5TypeTestSuite): component_re = re.compile(".*/([^/]+)/TestTemplateItem/portal_components" "/test\.[^.]+\.([^.]+).py$") for test_path in ( - glob('%s/product/*/tests/test*.py' % path) + - glob('%s/bt5/*/TestTemplateItem/test*.py' % path) + - glob('%s/bt5/*/TestTemplateItem/portal_components/test.*.test*.py' % path)): + #glob('%s/product/*/tests/test*.py' % path) + + #glob('%s/bt5/*/TestTemplateItem/test*.py' % path) + + #glob('%s/bt5/*/TestTemplateItem/portal_components/test.*.test*.py' % path)): + glob('%s/bt5/erp5_corporate_identity_test/TestTemplateItem/portal_components/test.*.test*.py' % path)): component_re_match = component_re.match(test_path) if component_re_match is not None: test_case = "%s:%s" % (component_re_match.group(1), -- 2.30.9