From 9814bbefde348122f3ed215ba0cf83f0e0feb86a Mon Sep 17 00:00:00 2001 From: spomichter Date: Fri, 20 Feb 2026 22:18:32 +0000 Subject: [PATCH] fix(test): add -s to pytest addopts for stdin support LCM autoconf prompts for system configuration during test collection, which fails without -s since pytest captures stdin by default. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b9b74a0688..b0057a4e0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -410,7 +410,7 @@ env = [ "GOOGLE_MAPS_API_KEY=AIzafake_google_key", "PYTHONWARNINGS=ignore:cupyx.jit.rawkernel is experimental:FutureWarning", ] -addopts = "-v -p no:warnings -ra --color=yes -m 'not (vis or exclude or tool or lcm or ros or heavy or gpu or module or e2e or integration or neverending or mujoco)'" +addopts = "-v -s -p no:warnings -ra --color=yes -m 'not (vis or exclude or tool or lcm or ros or heavy or gpu or module or e2e or integration or neverending or mujoco)'" asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "function"