Commit 8b5ccc00 authored by Xiaowu Zhang's avatar Xiaowu Zhang

__init__.py: abyss test should run with wendelin core

parent 9f6f69c8
...@@ -19,7 +19,8 @@ slapos_bt_list = [ ...@@ -19,7 +19,8 @@ slapos_bt_list = [
'slapos_configurator', 'slapos_configurator',
'slapos_mysql_innodb_catalog', 'slapos_mysql_innodb_catalog',
'slapos_jio', 'slapos_jio',
'slapos_jio_ui_test' 'slapos_jio_ui_test',
'slapos_abyss'
] ]
class SlapOSCloud(SavedTestSuite, ProjectTestSuite): class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
...@@ -58,7 +59,7 @@ class SlapOSCloud(SavedTestSuite, ProjectTestSuite): ...@@ -58,7 +59,7 @@ class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
def run(self, full_test): def run(self, full_test):
test = ':' in full_test and full_test.split(':')[1] or full_test test = ':' in full_test and full_test.split(':')[1] or full_test
if test in ('testSlapOSWendelinCoreTwo',): if test in ('testSlapOSWendelinCoreTwo', 'testSlapOSAbyss'):
return self.runUnitTest('--with_wendelin_core', '--activity_node=1', full_test) return self.runUnitTest('--with_wendelin_core', '--activity_node=1', full_test)
elif test.startswith('testFunctional'): elif test.startswith('testFunctional'):
return self._updateFunctionalTestResponse(self.runUnitTest(full_test)) return self._updateFunctionalTestResponse(self.runUnitTest(full_test))
......
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