From 3d53f211e5c907bb6e8aaddf05a3acdcae247e5d Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Fri, 15 Sep 2023 09:21:50 +0200 Subject: [PATCH] pytest: exclude test_03_goaway in CI runs due to timing dependency Closes #11860 --- tests/http/test_03_goaway.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/http/test_03_goaway.py b/tests/http/test_03_goaway.py index f9d9263bf5..1f4a3d7844 100644 --- a/tests/http/test_03_goaway.py +++ b/tests/http/test_03_goaway.py @@ -36,6 +36,7 @@ from testenv import Env, CurlClient, ExecResult log = logging.getLogger(__name__) +@pytest.mark.skipif(condition=Env().ci_run, reason="not suitable for CI runs") class TestGoAway: @pytest.fixture(autouse=True, scope='class') -- 2.47.3