]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
pytest: exclude test_03_goaway in CI runs due to timing dependency
authorStefan Eissing <stefan@eissing.org>
Fri, 15 Sep 2023 07:21:50 +0000 (09:21 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 21 Sep 2023 06:57:57 +0000 (08:57 +0200)
Closes #11860

tests/http/test_03_goaway.py

index f9d9263bf5ceac097aadeceb540c1facfff490c7..1f4a3d7844496b070500862d0962992c4c1a6a90 100644 (file)
@@ -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')