Browse Source
Make Admin UI tests less flaky #nolog
pull/1298/head
Miguel Grinberg
1 year ago
Failed to extract signature
3 changed files with
2 additions and
2 deletions
-
src/socketio/base_server.py
-
tests/async/test_admin.py
-
tests/common/test_admin.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] |
|
|
|
|
|
@ -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) |
|
|
|
|
|
@ -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) |
|
|
|