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 29F57158099 for ; Wed, 22 Nov 2023 15:57:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E3032BC014; Wed, 22 Nov 2023 15:57:17 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96F662BC014 for ; Wed, 22 Nov 2023 15:57:16 +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 D048D335DB0 for ; Wed, 22 Nov 2023 15:57:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50C62BBE for ; Wed, 22 Nov 2023 15:57:14 +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: <1700668630.cf52607acd7fd4ab3b1dc97ce45722b137718b9f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/QtPy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/QtPy/QtPy-2.4.1-r1.ebuild X-VCS-Directories: dev-python/QtPy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cf52607acd7fd4ab3b1dc97ce45722b137718b9f X-VCS-Branch: master Date: Wed, 22 Nov 2023 15:57:14 +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: a6f0f15f-e8e5-414f-b865-3ccafca11f77 X-Archives-Hash: 1a2f1a6eaf3a4b64f9c30123dfaf6b59 commit: cf52607acd7fd4ab3b1dc97ce45722b137718b9f Author: Michał Górny gentoo org> AuthorDate: Wed Nov 22 15:47:56 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 22 15:57:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf52607a dev-python/QtPy: Reenable the test for dev-qt/qtsensors:6 Signed-off-by: Michał Górny gentoo.org> dev-python/QtPy/QtPy-2.4.1-r1.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dev-python/QtPy/QtPy-2.4.1-r1.ebuild b/dev-python/QtPy/QtPy-2.4.1-r1.ebuild index 2d5fc3255ee9..ca7b19c3936d 100644 --- a/dev-python/QtPy/QtPy-2.4.1-r1.ebuild +++ b/dev-python/QtPy/QtPy-2.4.1-r1.ebuild @@ -215,9 +215,7 @@ python_test() { QT_API="pyqt6" virtx epytest \ --deselect qtpy/tests/test_main.py::test_qt_api_environ[PySide2] \ --deselect qtpy/tests/test_main.py::test_qt_api_environ[PyQt5] \ - --deselect qtpy/tests/test_main.py::test_qt_api_environ[PySide6] \ - --deselect qtpy/tests/test_qtsensors.py::test_qtsensors - # Qt6Sensors not yet packaged and enabled in PyQt6 ebuild + --deselect qtpy/tests/test_main.py::test_qt_api_environ[PySide6] fi if use pyside2; then einfo "Testing with ${EPYTHON} and QT_API=PySide2" @@ -231,9 +229,7 @@ python_test() { QT_API="pyside6" virtx epytest \ --deselect qtpy/tests/test_main.py::test_qt_api_environ[PySide2] \ --deselect qtpy/tests/test_main.py::test_qt_api_environ[PyQt5] \ - --deselect qtpy/tests/test_main.py::test_qt_api_environ[PyQt6] \ - --deselect qtpy/tests/test_qtsensors.py::test_qtsensors - # Qt6Sensors not yet packaged and enabled in PySide6 ebuild + --deselect qtpy/tests/test_main.py::test_qt_api_environ[PyQt6] fi }