(self)
| 9 | @requires_redis |
| 10 | class TestLockTaskSemaphore(BaseTestCase): |
| 11 | def setUp(self): |
| 12 | super(TestLockTaskSemaphore, self).setUp() |
| 13 | self.semaphore = RedisSemaphore(self.huey, 'lock_a', 2) |
| 14 | self.huey.storage.conn.delete(self.semaphore.key) |
| 15 | |
| 16 | def tearDown(self): |
| 17 | self.huey.storage.conn.delete(self.semaphore.key) |
nothing calls this directly
no test coverage detected