From 3ab1f273e2bf39cd252595c5c0dca663594e1834 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 6 Jan 2024 18:26:06 +0000 Subject: [PATCH] Make Admin UI tests less flaky #nolog --- src/socketio/base_server.py | 2 -- tests/async/test_admin.py | 1 + tests/common/test_admin.py | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/socketio/base_server.py b/src/socketio/base_server.py index 0a34429..1625b13 100644 --- a/src/socketio/base_server.py +++ b/src/socketio/base_server.py @@ -216,8 +216,6 @@ class BaseServer: # - self.handlers["*"][event] # - self.handlers["*"]["*"] handler = None - print(event, namespace) - print(namespace in self.handlers) if namespace in self.handlers: if event in self.handlers[namespace]: handler = self.handlers[namespace][event] diff --git a/tests/async/test_admin.py b/tests/async/test_admin.py index 95b8fef..846ee89 100644 --- a/tests/async/test_admin.py +++ b/tests/async/test_admin.py @@ -296,6 +296,7 @@ class TestAsyncAdmin(unittest.TestCase): # join and leave admin_client.emit('join', ('/', 'room', client1.sid)) + time.sleep(0.2) admin_client.emit( 'emit', ('/', 'room', 'foo', {'bar': 'baz'})) data = client1.receive(timeout=5) diff --git a/tests/common/test_admin.py b/tests/common/test_admin.py index c4e2ec8..6c5b4b0 100644 --- a/tests/common/test_admin.py +++ b/tests/common/test_admin.py @@ -271,6 +271,7 @@ class TestAdmin(unittest.TestCase): # join and leave admin_client.emit('join', ('/', 'room', client1.sid)) + time.sleep(0.2) admin_client.emit( 'emit', ('/', 'room', 'foo', {'bar': 'baz'})) data = client1.receive(timeout=5)