Commit b5d7c11c authored by Arnaud Fontaine's avatar Arnaud Fontaine

Ignore meaningless use case results which equal to 0 (upon error only).

parent 4674a7af
......@@ -154,6 +154,8 @@ def computeStatisticFromFilenameList(argument_namespace, filename_list,
if use_case_suite:
current_count = int(row)
current_duration = int(row_iter.next()[1]) / 60.0
if not current_count:
continue
# For stats by iteration, used later on to generate cases per
# minutes plot for a given number of users
......
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