Skip to content
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.

Commit

Permalink
slow down timeouts in test suite for semaphoreci
Browse files Browse the repository at this point in the history
  • Loading branch information
haliphax committed Jan 19, 2016
1 parent f544043 commit 31abaa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rodario/test_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def testSingularMethod(self):
# first value is number of workers in cluster pool
self.assertEqual(2, future.get())
# second value is the actual function call result
self.assertEqual(2, future.get(timeout=3))
self.assertEqual(2, future.get(timeout=10))
self._redis.delete('global.lock:test_singular')
self.actor.part('decorators_test')
self.costar.part('decorators_test')
Expand All @@ -112,7 +112,7 @@ def testLockExpiry(self):
# first value is number of workers in cluster pool
self.assertEqual(2, future.get())
# second value is the actual function call result
self.assertEqual(3, future.get(timeout=3))
self.assertEqual(3, future.get(timeout=10))
self.actor.part('decorators_test')
self.costar.part('decorators_test')

Expand Down

0 comments on commit 31abaa1

Please sign in to comment.