From c790c01913ac79f211f7d1a34fec5ed156085750 Mon Sep 17 00:00:00 2001 From: Ivan Nikolic Date: Wed, 21 Jan 2026 13:21:13 +0800 Subject: [PATCH] commented out Mem Transport test case since it's so fast it ruins the graph --- dimos/protocol/pubsub/benchmark/testdata.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dimos/protocol/pubsub/benchmark/testdata.py b/dimos/protocol/pubsub/benchmark/testdata.py index e9190ad70e..beb140227f 100644 --- a/dimos/protocol/pubsub/benchmark/testdata.py +++ b/dimos/protocol/pubsub/benchmark/testdata.py @@ -101,12 +101,12 @@ def memory_msggen(size: int) -> tuple[str, Any]: return ("benchmark/memory", make_data_image(size)) -testcases.append( - Case( - pubsub_context=memory_pubsub_channel, - msg_gen=memory_msggen, - ) -) +# testcases.append( +# Case( +# pubsub_context=memory_pubsub_channel, +# msg_gen=memory_msggen, +# ) +# ) @contextmanager