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 A3052158086 for ; Wed, 15 Dec 2021 17:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C89F2BC021; Wed, 15 Dec 2021 17:12:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0FA1C2BC021 for ; Wed, 15 Dec 2021 17:12:09 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C633834362C for ; Wed, 15 Dec 2021 17:12:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2EEE23E for ; Wed, 15 Dec 2021 17:12:02 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1639588318.fa0684ea0ef948a16dd61d2f35060d010c00ae87.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/QtPy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/QtPy/QtPy-1.11.3-r1.ebuild X-VCS-Directories: dev-python/QtPy/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: fa0684ea0ef948a16dd61d2f35060d010c00ae87 X-VCS-Branch: master Date: Wed, 15 Dec 2021 17:12: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: eb5cf5ca-6113-401d-a58d-4d3f882bc12e X-Archives-Hash: d1e7a33842ae1626d5e3a8cf456b5941 commit: fa0684ea0ef948a16dd61d2f35060d010c00ae87 Author: Andrew Ammerlaan gentoo org> AuthorDate: Wed Dec 15 15:33:05 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Dec 15 17:11:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa0684ea dev-python/QtPy: move virtx so failure is not ignored Closes: https://bugs.gentoo.org/829145 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/QtPy/QtPy-1.11.3-r1.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dev-python/QtPy/QtPy-1.11.3-r1.ebuild b/dev-python/QtPy/QtPy-1.11.3-r1.ebuild index 6ced63406d95..56716c7509d2 100644 --- a/dev-python/QtPy/QtPy-1.11.3-r1.ebuild +++ b/dev-python/QtPy/QtPy-1.11.3-r1.ebuild @@ -122,16 +122,12 @@ src_prepare() { sed -i -e "s/from PySide.QtCore import/raise ImportError #/" qtpy/__init__.py || die } -src_test() { - virtx python_foreach_impl python_test -} - python_test() { if use pyqt5; then - QT_API="pyqt5" epytest + virtx QT_API="pyqt5" epytest fi if use pyside2; then - QT_API="pyside2" epytest + virtx QT_API="pyside2" epytest fi }