From: Stefan Eissing Date: Fri, 15 Sep 2023 07:21:50 +0000 (+0200) Subject: pytest: exclude test_03_goaway in CI runs due to timing dependency X-Git-Tag: curl-8_4_0~165 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3d53f211e5c907bb6e8aaddf05a3acdcae247e5d;p=thirdparty%2Fcurl.git pytest: exclude test_03_goaway in CI runs due to timing dependency Closes #11860 --- 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')