Commit 3a4a1c08 authored by Ivan Tyagov's avatar Ivan Tyagov

Dynamically calculate number of users for given test run

/reviewed-on !929
parent eec8e2ae
......@@ -18,7 +18,12 @@ class ERP5_scalability():
return 'example/scalabilityUsers'
def getUserQuantity(self, test_number):
return [8, 14, 20, 28, 36][test_number]
"""
Return number of users for a given test run.
"""
users_per_zope_process = 8
max_tests = 100
return [x * users_per_zope_process for x in range(1, max_tests)][test_number]
Please register or sign in to reply
def getTestDuration(self, test_number):
return 60*10
......
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