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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D804815808B for ; Sat, 12 Feb 2022 23:53:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFFF0E0826; Sat, 12 Feb 2022 23:53:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 9E557E0826 for ; Sat, 12 Feb 2022 23:53:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1851A342E2B for ; Sat, 12 Feb 2022 23:53:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D6191BD for ; Sat, 12 Feb 2022 23:52:59 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1644709846.1bae8d933a2bddb9211a945c9126f7d0eee957ca.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-qt/pytest-qt-4.0.2.ebuild X-VCS-Directories: dev-python/pytest-qt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1bae8d933a2bddb9211a945c9126f7d0eee957ca X-VCS-Branch: master Date: Sat, 12 Feb 2022 23:52:59 +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: f5812a84-bb03-48de-8309-a4519420bb70 X-Archives-Hash: 6495cd457bff3663e20cf090b2597f92 commit: 1bae8d933a2bddb9211a945c9126f7d0eee957ca Author: Michał Górny gentoo org> AuthorDate: Sat Feb 12 23:50:46 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 12 23:50:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bae8d93 dev-python/pytest-qt: Fix dying on test failures Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-qt/pytest-qt-4.0.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest-qt/pytest-qt-4.0.2.ebuild b/dev-python/pytest-qt/pytest-qt-4.0.2.ebuild index f2e45a6dfdb4..ccbeafed2185 100644 --- a/dev-python/pytest-qt/pytest-qt-4.0.2.ebuild +++ b/dev-python/pytest-qt/pytest-qt-4.0.2.ebuild @@ -50,10 +50,10 @@ src_test() { python_test() { distutils_install_for_testing - PYTEST_QT_API="pyqt5" epytest + PYTEST_QT_API="pyqt5" epytest || die if [[ "${EPYTHON}" == "python3.10" ]]; then return else - PYTEST_QT_API="pyside2" epytest + PYTEST_QT_API="pyside2" epytest || die fi }