From 5b10af7b1aee8a4c72d4bf0669f93484c1b82167 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 31 Mar 2025 08:50:28 +1300 Subject: [PATCH] test: Disable streaming in main test call --- tests/basic/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_main.py b/tests/basic/test_main.py index a53ce67a5..9fe8a9f21 100644 --- a/tests/basic/test_main.py +++ b/tests/basic/test_main.py @@ -1277,7 +1277,7 @@ class TestMain(TestCase): mock_io_instance = MockInputOutput.return_value with GitTemporaryDirectory(): main( - ["--cache-prompts", "--exit", "--yes"], + ["--cache-prompts", "--exit", "--yes", "--no-stream"], input=DummyInput(), output=DummyOutput(), )