@@ -139,9 +139,9 @@ def run_bulk_executor(self,
139
139
:param executor_list: list of executors for execution in format [[processes, threads, 'label'], ...]
140
140
:param run_setup: setup of execution
141
141
:param sleep_between_bulks: sleep between bulks
142
- :param performance_detail: add to the return also performance details (default is False)
143
- :return: return performance results with key information about the 'state'. The state
144
- True - all executions was without exceptions, False - some exceptions.
142
+ :param performance_detail: add to the return also performance details or only state info (default is False - only state info )
143
+ :return: return performance results (see the param 'performance_detail') with key information about the 'state'.
144
+ The state True - all executions was without exceptions/errors , False - some exceptions.
145
145
"""
146
146
performance = PerfResults ()
147
147
count = 0
@@ -173,9 +173,9 @@ def run_executor(self, executor_list = [[2, 1, '1x thread'], [2, 2, '2x thread']
173
173
174
174
:param executor_list: list of executors for execution in format [[processes, threads, 'label'], ...]
175
175
:param run_setup: setup of execution
176
- :param performance_detail: add to the return also performance details (default is False)
177
- :return: return performance results with key information about the 'state'. The state
178
- True - all executions was without exceptions, False - some exceptions.
176
+ :param performance_detail: add to the return also performance details or only state info (default is False - only state info )
177
+ :return: return performance results (see the param 'performance_detail') with key information about the 'state'.
178
+ The state True - all executions was without exceptions/errors , False - some exceptions.
179
179
"""
180
180
performance = PerfResults ()
181
181
output = None
@@ -232,9 +232,9 @@ def run(self, processes = 2, threads = 2, run_setup: RunSetup = None, performanc
232
232
:param processes: how much processes will be used
233
233
:param threads: how much threads will be used
234
234
:param run_setup: setup of execution
235
- :param performance_detail: add to the return also performance details (default is False)
236
- :return: return performance results with key information about the 'state'. The state
237
- True - all executions was without exceptions, False - some exceptions.
235
+ :param performance_detail: add to the return also performance details or only state info (default is False - only state info )
236
+ :return: return performance results (see the param 'performance_detail') with key information about the 'state'.
237
+ The state True - all executions was without exceptions/errors , False - some exceptions.
238
238
"""
239
239
performance = PerfResults ()
240
240
output = None
@@ -285,9 +285,9 @@ def one_run(self, run_setup: RunSetup = None, performance_detail = False) -> Per
285
285
""" Run test, only one call, execution in new process, with standard write outputs
286
286
287
287
:param run_setup: setting for run
288
- :param performance_detail: add to the return also performance details (default is False)
289
- :return: return performance results with key information about the 'state'. The state
290
- True - all executions was without exceptions, False - some exceptions.
288
+ :param performance_detail: add to the return also performance details or only state info (default is False - only state info )
289
+ :return: return performance results (see the param 'performance_detail') with key information about the 'state'.
290
+ The state True - all executions was without exceptions/errors , False - some exceptions.
291
291
"""
292
292
293
293
# setup minimalistic values
0 commit comments