Commit 50a63611 authored by Łukasz Nowak's avatar Łukasz Nowak

XXX: Select only monitor tests

parent 698e505a
from glob import glob
import os, subprocess, re
# test_suite is provided by 'run_test_suite'
from test_suite import SavedTestSuite
from test_suite import ERP5TypeTestSuite
import sys
HERE = os.path.dirname(__file__)
class _ERP5(SavedTestSuite):
_saved_test_id = "erp5_web_renderjs_ui_test:testFunctionalRJSInterfaceValidator"
class _ERP5(ERP5TypeTestSuite):
realtime_output = False
enabled_product_list = ('CMFActivity', 'CMFCategory', 'ERP5', 'ERP5Catalog',
'ERP5eGovSecurity', 'ERP5Form',
......@@ -36,42 +35,7 @@ class _ERP5(SavedTestSuite):
component_re = re.compile(".*/([^/]+)/TestTemplateItem/portal_components"
"/test\.[^.]+\.([^.]+).py$")
for test_path in (
# glob('%s/product/Formulator/tests/test*.py' % path) +
# glob('%s/product/ERP5Form/tests/test*.py' % path) +
# ['%s/product/ERP5OOo/tests/testDeferredStyle.py' % path] +
# ['%s/product/ERP5/tests/testXHTML.py' % path] +
# ['%s/product/ERP5/tests/testERP5Core.py' % path] +
# ['%s/product/ERP5/tests/testQueryModule.py' % path] +
# ['%s/product/ERP5/tests/testBankReconciliation.py' % path] +
# ['%s/product/ERP5Security/tests/testERP5Security.py' % path] +
# ['%s/product/ERP5Type/tests/testFunctionalCore.py' % path] +
# ['%s/product/ERP5Type/tests/testFunctionalAnonymousSelection.py' % path] +
# glob('%s/bt5/erp5_web/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_hal_json_style/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_web_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_token_login/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_trade_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_pdm_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_crm_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_item_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_deferred_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_accounting_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_accounting_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_bank_reconciliation_renderjs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_document_scanner_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_gadget_interface_validator_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_web_monitoring_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_travel_expense_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_officejs_support_request_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_officejs_afs_directory_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_test_result/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_officejs_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
glob('%s/bt5/erp5_web_manifest_test/TestTemplateItem/portal_components/test.*.test*.py' % path) +
# glob('%s/bt5/erp5_oauth*/TestTemplateItem/portal_components/test.*.test*.py' % path) +
[]
glob('%s/bt5/erp5_web_monitoring_ui_test/TestTemplateItem/portal_components/test.*.test*.py' % path) + []
):
component_re_match = component_re.match(test_path)
if component_re_match is not None:
......@@ -215,14 +179,8 @@ class ERP5BusinessTemplateCodingStyleTestSuite(_ERP5):
def getTestList(self):
test_list = []
for business_template_path in (
glob('%s/../product/ERP5/bootstrap/erp5_*' % HERE) +
glob('%s/../bt5/erp5_adm*' % HERE) +
glob('%s/../bt5/erp5_*hal*' % HERE) +
glob('%s/../bt5/erp5_*renderjs*' % HERE) +
glob('%s/../bt5/erp5_*officejs*' % HERE) +
glob('%s/../bt5/erp5_web*' % HERE) +
[]
):
glob('%s/../bt5/*' % HERE)
+ glob('%s/../product/ERP5/bootstrap/*' % HERE)):
# we skip coding style check for business templates having this marker
# property. Since the property is not exported (on purpose), modified business templates
# will be candidate for coding style test again.
......
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