From 43ce533dbf117f8fbea372aa126c1eaecd193680 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 13 Jun 2021 20:26:01 -0400 Subject: [PATCH] Speedup the dynamic pubsub test --- tests/test_advanced_streaming.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_advanced_streaming.py b/tests/test_advanced_streaming.py index b5cf2b9..a4d36a9 100644 --- a/tests/test_advanced_streaming.py +++ b/tests/test_advanced_streaming.py @@ -33,9 +33,9 @@ async def publisher( for sub_stream in _registry[sub]: await sub_stream.send(val) - # throttle send rate to ~4Hz + # throttle send rate to ~1kHz # making it readable to a human user - await trio.sleep(1/4) + await trio.sleep(1/1000) @tractor.context @@ -133,7 +133,7 @@ def test_dynamic_pub_sub(): ) # block until cancelled by user - with trio.fail_after(10): + with trio.fail_after(3): await trio.sleep_forever() try: