Skip to content

Commit

Permalink
adapt throughput thresholds in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cwiede committed Jan 21, 2022
1 parent 5eb4861 commit 98402b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nexxT/tests/integration/test_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,9 +1325,10 @@ def _throughput(self, threadmode):
throughput = float(M.group(1))
if threadmode == "multithread":
self.record_property("multithread_smp_per_sec", throughput)
assert throughput >= 750
else:
self.record_property("throughput_smp_per_sec", throughput)
assert throughput > 1000
assert throughput >= 4500
finally:
if not self.keep_open:
if conf.configuration().dirty():
Expand Down

0 comments on commit 98402b3

Please sign in to comment.