Skip to content

Commit 15e2c44

Browse files
Increase timeouts
1 parent 7c37ed0 commit 15e2c44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_notifier.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def start_server():
3434
flask_process = Process(target=run_server, args=(queue,))
3535
flask_process.start()
3636

37-
response = requests.get(WEBHOOK_SERVER_URL, timeout=3)
37+
response = requests.get(WEBHOOK_SERVER_URL, timeout=5)
3838
response.raise_for_status()
3939

4040
yield
@@ -183,5 +183,5 @@ async def test_peer_connected_room_deleted(
183183
self.assert_event(event)
184184

185185
def assert_event(self, event):
186-
data = queue.get(timeout=2.5)
186+
data = queue.get(timeout=5)
187187
assert data == event or isinstance(data, event)

0 commit comments

Comments
 (0)