Commit 30ee08a3 authored by Romain Courteaud's avatar Romain Courteaud

MORE TESTS

parent 43df2954
...@@ -23,7 +23,10 @@ slapos_bt_list = [ ...@@ -23,7 +23,10 @@ slapos_bt_list = [
'slapos_abyss' 'slapos_abyss'
] ]
slapos_bt_list = [ slapos_bt_list = [
'slapos_erp5' 'slapos_erp5',
'slapos_cloud',
'slapos_accounting',
'slapos_panel_ui_test',
] ]
class SlapOSCloud(SavedTestSuite, ProjectTestSuite): class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
...@@ -47,7 +50,12 @@ class SlapOSCloud(SavedTestSuite, ProjectTestSuite): ...@@ -47,7 +50,12 @@ class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
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),
component_re_match.group(2)) component_re_match.group(2))
if component_re_match.group(2) != 'testSlapOSERP5VirtualMasterScenario': if component_re_match.group(2) not in [
'testSlapOSERP5VirtualMasterScenario',
'testSlapOSAllocationSupply',
'testSlapOSSaleSupply',
'testFunctionalSlapOSPanelStyle',
]:
continue continue
else: else:
test_case = test_path.split(os.sep)[-1][:-3] # remove .py test_case = test_path.split(os.sep)[-1][:-3] # remove .py
......
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