Skip to content

Commit

Permalink
rename to CommissioningStressTest
Browse files Browse the repository at this point in the history
  • Loading branch information
simonlingoogle committed Aug 1, 2020
1 parent 0c1d9f6 commit dca6b9e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pylibs/stress_tests/commissioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,13 @@
N = 5


class StressTest(BaseStressTest):
class CommissioningStressTest(BaseStressTest):
SUITE = 'commissioning'

def __init__(self):
super(StressTest, self).__init__("Commissioning Test", ["Join Count", "Success Percent", "Average Join Time"],
raw=True)
super(CommissioningStressTest, self).__init__("Commissioning Test",
["Join Count", "Success Percent", "Average Join Time"],
raw=True)
self._join_time_accum = 0
self._join_count = 0
self._join_fail_count = 0
Expand Down Expand Up @@ -174,4 +175,4 @@ def _press_commissioning(self, R: int, C: int, max_joining_count: int = 2):


if __name__ == '__main__':
StressTest().run()
CommissioningStressTest().run()

0 comments on commit dca6b9e

Please sign in to comment.