From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 200C3158041 for ; Fri, 15 Mar 2024 03:44:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48549E29BD; Fri, 15 Mar 2024 03:44:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2781CE29BD for ; Fri, 15 Mar 2024 03:44:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DE5533BDFF for ; Fri, 15 Mar 2024 03:44:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 771997E7 for ; Fri, 15 Mar 2024 03:44:11 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710474223.32bc4082f072809017d39f7adbaf9bb48300e88b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/python/python-3.10.13_p3.ebuild dev-lang/python/python-3.11.8_p1.ebuild dev-lang/python/python-3.12.2_p1.ebuild dev-lang/python/python-3.13.0_alpha4.ebuild dev-lang/python/python-3.13.0_alpha5.ebuild dev-lang/python/python-3.8.18_p2.ebuild dev-lang/python/python-3.9.18_p2.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 32bc4082f072809017d39f7adbaf9bb48300e88b X-VCS-Branch: master Date: Fri, 15 Mar 2024 03:44:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9e819bb5-369c-4325-ad70-1889b882cd96 X-Archives-Hash: f77ba5023de34e8b8d8371b6d01b9d11 commit: 32bc4082f072809017d39f7adbaf9bb48300e88b Author: Sam James gentoo org> AuthorDate: Fri Mar 15 03:43:11 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 15 03:43:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32bc4082 dev-lang/python: skip another flaky test Every so often, I get: ``` 0:28:02 load avg: 0.00 running (1): test.test_concurrent_futures.test_deadlock (27 min 33 sec) 0:28:32 load avg: 0.00 running (1): test.test_concurrent_futures.test_deadlock (28 min 3 sec) 0:29:02 load avg: 0.00 running (1): test.test_concurrent_futures.test_deadlock (28 min 33 sec) ``` There's a bunch of upstream reports about this test too. Just skip it. Closes: https://bugs.gentoo.org/788022 Signed-off-by: Sam James gentoo.org> dev-lang/python/python-3.10.13_p3.ebuild | 2 ++ dev-lang/python/python-3.11.8_p1.ebuild | 2 ++ dev-lang/python/python-3.12.2_p1.ebuild | 2 ++ dev-lang/python/python-3.13.0_alpha4.ebuild | 2 ++ dev-lang/python/python-3.13.0_alpha5.ebuild | 2 ++ dev-lang/python/python-3.8.18_p2.ebuild | 1 + dev-lang/python/python-3.9.18_p2.ebuild | 2 ++ 7 files changed, 13 insertions(+) diff --git a/dev-lang/python/python-3.10.13_p3.ebuild b/dev-lang/python/python-3.10.13_p3.ebuild index 916bc1290842..c3099177affd 100644 --- a/dev-lang/python/python-3.10.13_p3.ebuild +++ b/dev-lang/python/python-3.10.13_p3.ebuild @@ -247,6 +247,7 @@ src_configure() { # They'll even hang here but be fine in src_test sometimes. # bug #828535 (and related: bug #788022) -x test_asyncio + -x test_concurrent_futures -x test_httpservers -x test_logging -x test_multiprocessing_fork @@ -384,6 +385,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb ) diff --git a/dev-lang/python/python-3.11.8_p1.ebuild b/dev-lang/python/python-3.11.8_p1.ebuild index a86fff509136..0b7d97cc23bc 100644 --- a/dev-lang/python/python-3.11.8_p1.ebuild +++ b/dev-lang/python/python-3.11.8_p1.ebuild @@ -237,6 +237,7 @@ src_configure() { # They'll even hang here but be fine in src_test sometimes. # bug #828535 (and related: bug #788022) -x test_asyncio + -x test_concurrent_futures -x test_httpservers -x test_logging -x test_multiprocessing_fork @@ -398,6 +399,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb ) diff --git a/dev-lang/python/python-3.12.2_p1.ebuild b/dev-lang/python/python-3.12.2_p1.ebuild index e6450baf0c45..7e8fb832f57c 100644 --- a/dev-lang/python/python-3.12.2_p1.ebuild +++ b/dev-lang/python/python-3.12.2_p1.ebuild @@ -237,6 +237,7 @@ src_configure() { # They'll even hang here but be fine in src_test sometimes. # bug #828535 (and related: bug #788022) -x test_asyncio + -x test_concurrent_futures -x test_httpservers -x test_logging -x test_multiprocessing_fork @@ -392,6 +393,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb ) diff --git a/dev-lang/python/python-3.13.0_alpha4.ebuild b/dev-lang/python/python-3.13.0_alpha4.ebuild index b763d4213f47..78f3cecc7a9e 100644 --- a/dev-lang/python/python-3.13.0_alpha4.ebuild +++ b/dev-lang/python/python-3.13.0_alpha4.ebuild @@ -247,6 +247,7 @@ src_configure() { # They'll even hang here but be fine in src_test sometimes. # bug #828535 (and related: bug #788022) -x test_asyncio + -x test_concurrent_futures -x test_httpservers -x test_logging -x test_multiprocessing_fork @@ -403,6 +404,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb ) diff --git a/dev-lang/python/python-3.13.0_alpha5.ebuild b/dev-lang/python/python-3.13.0_alpha5.ebuild index b763d4213f47..78f3cecc7a9e 100644 --- a/dev-lang/python/python-3.13.0_alpha5.ebuild +++ b/dev-lang/python/python-3.13.0_alpha5.ebuild @@ -247,6 +247,7 @@ src_configure() { # They'll even hang here but be fine in src_test sometimes. # bug #828535 (and related: bug #788022) -x test_asyncio + -x test_concurrent_futures -x test_httpservers -x test_logging -x test_multiprocessing_fork @@ -403,6 +404,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb ) diff --git a/dev-lang/python/python-3.8.18_p2.ebuild b/dev-lang/python/python-3.8.18_p2.ebuild index 30365c0caa7c..35dce04267d9 100644 --- a/dev-lang/python/python-3.8.18_p2.ebuild +++ b/dev-lang/python/python-3.8.18_p2.ebuild @@ -306,6 +306,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb ) diff --git a/dev-lang/python/python-3.9.18_p2.ebuild b/dev-lang/python/python-3.9.18_p2.ebuild index 3f0257a31151..2fac75e39220 100644 --- a/dev-lang/python/python-3.9.18_p2.ebuild +++ b/dev-lang/python/python-3.9.18_p2.ebuild @@ -171,6 +171,7 @@ src_configure() { # They'll even hang here but be fine in src_test sometimes. # bug #828535 (and related: bug #788022) -x test_asyncio + -x test_concurrent_futures -x test_httpservers -x test_logging -x test_multiprocessing_fork @@ -365,6 +366,7 @@ src_test() { -j "$(makeopts_jobs)" # fails + -x test_concurrent_futures -x test_gdb )