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 E2B6A15802F for ; Thu, 23 Feb 2023 20:31:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EB99E0869; Thu, 23 Feb 2023 20:31:05 +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 EF280E0869 for ; Thu, 23 Feb 2023 20:31:04 +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 417F6340836 for ; Thu, 23 Feb 2023 20:31:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D32597D0 for ; Thu, 23 Feb 2023 20:31:02 +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: <1677184253.514d57130a7fa9944603a85d714140dd2a12036b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qiskit-terra/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/qiskit-terra/qiskit-terra-0.23.2.ebuild X-VCS-Directories: dev-python/qiskit-terra/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 514d57130a7fa9944603a85d714140dd2a12036b X-VCS-Branch: master Date: Thu, 23 Feb 2023 20:31:02 +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: 07f0256d-2fee-455f-ac3d-e87bfc3cc441 X-Archives-Hash: 6c19c241b5108b498e3b3a93c1e78fc8 commit: 514d57130a7fa9944603a85d714140dd2a12036b Author: Sam James gentoo org> AuthorDate: Thu Feb 23 20:30:45 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 23 20:30:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=514d5713 dev-python/qiskit-terra: drop timeout testing hacks Signed-off-by: Sam James gentoo.org> dev-python/qiskit-terra/qiskit-terra-0.23.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/qiskit-terra/qiskit-terra-0.23.2.ebuild b/dev-python/qiskit-terra/qiskit-terra-0.23.2.ebuild index 806dff2b796c..3d1bdc2d0aba 100644 --- a/dev-python/qiskit-terra/qiskit-terra-0.23.2.ebuild +++ b/dev-python/qiskit-terra/qiskit-terra-0.23.2.ebuild @@ -169,5 +169,6 @@ python_test() { rm -rf qiskit || die # Run the Python test suite rather than everything under test/ which # includes the 'randomized' suite. Upstream run that in a separate CI job. - epytest -p timeout -p xdist -n "$(makeopts_jobs)" --timeout 500 test/python + # Note: use -p timeout --timeout 500 if debugging hanging tests. + epytest -p xdist -n "$(makeopts_jobs)" test/python }