Commit a8dc0b12 authored by Rafael Monnerat's avatar Rafael Monnerat

CloudPerformanceUnitTestDistributor: Hardcode TestSuite Name

  The parameter test_suite_title passed do not correspond exactly to test_suite_title present on ERP5 (as this test is not supposed to share the effort to run tests
parent d161f838
......@@ -85,10 +85,16 @@ class CloudPerformanceUnitTestDistributor(ERP5ProjectUnitTestDistributor):
security.declarePublic("generateConfiguration")
def generateConfiguration(self, test_suite_title, batch_mode=0):
""" Disable this feature due Backward compatibility, as test_suite_title
is modified on startTestSuite the original method cannot find the
right Test Suite.
"""
return the list of configuration to create instances, in the case of ERP5 unit tests,
we will have only one configuration (unlike scalability tests). But for API consistency,
always return a list.
"""
test_suite = self._getTestSuiteFromTitle("ERP5-Cloud-Reliability")
cluster_configuration = test_suite.getClusterConfiguration() or '{}'
try:
generated_configuration = {"configuration_list": [json.loads(cluster_configuration)]}
except ValueError:
generated_configuration = {"configuration_list": [{}]}
if batch_mode:
return generated_configuration
......
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