From db8547e35df2e47928f51bbdead70b771587d2fe Mon Sep 17 00:00:00 2001 From: Steven Palma Date: Sun, 8 Mar 2026 14:02:33 +0100 Subject: [PATCH] test(cameras): skip flaky async_read test (#3106) --- tests/cameras/test_opencv.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/cameras/test_opencv.py b/tests/cameras/test_opencv.py index feb700631..720d0c9b3 100644 --- a/tests/cameras/test_opencv.py +++ b/tests/cameras/test_opencv.py @@ -170,6 +170,7 @@ def test_async_read(index_or_path): assert isinstance(img, np.ndarray) +@pytest.mark.skip("Skipping test: async_read 0 timeout behavior may be flaky/non-deterministic.") def test_async_read_timeout(): config = OpenCVCameraConfig(index_or_path=DEFAULT_PNG_FILE_PATH, warmup_s=0)