From f01f38eff5b3ddfe3b4fd657022bfada485a8832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 22 Jul 2024 20:42:18 +0200 Subject: [PATCH] CI: Skip test_abort_clients, failure reported upstream https://github.com/python/cpython/issues/122136 --- tests/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/tests.yml b/tests/tests.yml index fb2659f..2ba326a 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -30,10 +30,11 @@ run: "PYTHON=python{{ pybasever }}d TOX=false VERSION={{ pybasever }} CYTHON=false ./venv.sh" - selftest: dir: python/selftest - run: "VERSION={{ pybasever }} X='-i test_check_probes' ./parallel.sh" + # test_abort_clients: https://github.com/python/cpython/issues/122136 + run: "VERSION={{ pybasever }} X='-i test_check_probes -i test_abort_clients' ./parallel.sh" - debugtest: dir: python/selftest - run: "VERSION={{ pybasever }} PYTHON=python{{ pybasever }}d X='-i test_check_probes' ./parallel.sh" + run: "VERSION={{ pybasever }} PYTHON=python{{ pybasever }}d X='-i test_check_probes -i test_abort_clients' ./parallel.sh" - optimizedflags: dir: python/flags run: "python{{ pybasever }} ./assertflags.py -O3"