From 91b422d356a52d32708c02514d8ede66363e8847 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Tue, 17 Mar 2026 12:38:30 +0100 Subject: [PATCH] pytest: add additional quiche check for flaky test_05_01 As long as stream resets are not visible in the API reliably, exclude test_05_01, same as test_05_02 already. Closes #20952 --- tests/http/test_05_errors.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/http/test_05_errors.py b/tests/http/test_05_errors.py index 4c6b3d87b9..d6c11ff874 100644 --- a/tests/http/test_05_errors.py +++ b/tests/http/test_05_errors.py @@ -41,6 +41,9 @@ class TestErrors: # download 1 file, check that we get CURLE_PARTIAL_FILE @pytest.mark.parametrize("proto", Env.http_protos()) def test_05_01_partial_1(self, env: Env, httpd, nghttpx, proto): + if proto == 'h3' and env.curl_uses_lib('quiche') and \ + not env.curl_lib_version_at_least('quiche', '0.24.8'): + pytest.skip("quiche issue #2277 not fixed") count = 1 curl = CurlClient(env=env) urln = f'https://{env.authority_for(env.domain1, proto)}' \