Commit 060ac5ee authored by Benjamin Blanc's avatar Benjamin Blanc

runScalabilityTestSuite: publish test list on test result line

parent d0098ce9
......@@ -429,11 +429,13 @@ class ScalabilityLauncher(object):
"duration=%d\n"\
"number of tests=%d\n"\
"number of users=%d\n"\
"tests= %s\n"\
%(
created_document_number,
test_duration,
len(test_suite_list),
(user_number/len(test_suite_list))*len(test_suite_list)
(user_number/len(test_suite_list))*len(test_suite_list),
' '.join(test_suite_list)
)
self.log("results: %s" %results)
self.log("%s doc in %s secs = %s docs per hour" %(created_document_number, test_duration, created_document_per_hour_number))
......
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