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 0B3A215803E for ; Fri, 5 Jan 2024 12:57:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52F7C2BC199; Fri, 5 Jan 2024 12:57: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3711E2BC199 for ; Fri, 5 Jan 2024 12:57:02 +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 410963430B2 for ; Fri, 5 Jan 2024 12:57:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97DC41300 for ; Fri, 5 Jan 2024 12:56: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: <1704459416.9a67164e66131d09bf522372eaaeb5ceb3d93f4c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyopengl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyopengl/pyopengl-3.1.7-r1.ebuild X-VCS-Directories: dev-python/pyopengl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9a67164e66131d09bf522372eaaeb5ceb3d93f4c X-VCS-Branch: master Date: Fri, 5 Jan 2024 12:56: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: 2ec6f128-ee29-4cb9-a0d0-483db3252733 X-Archives-Hash: d4b9d71735be9610a63f9808c0df566c commit: 9a67164e66131d09bf522372eaaeb5ceb3d93f4c Author: Michał Górny gentoo org> AuthorDate: Fri Jan 5 12:56:25 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 5 12:56:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a67164e dev-python/pyopengl: Fix running tests on systems without python[tk] Signed-off-by: Michał Górny gentoo.org> dev-python/pyopengl/pyopengl-3.1.7-r1.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-python/pyopengl/pyopengl-3.1.7-r1.ebuild b/dev-python/pyopengl/pyopengl-3.1.7-r1.ebuild index c062ef4860ca..7dd53e7e560f 100644 --- a/dev-python/pyopengl/pyopengl-3.1.7-r1.ebuild +++ b/dev-python/pyopengl/pyopengl-3.1.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -56,13 +56,14 @@ PATCHES=( "${FILESDIR}/${P}-pypy3.patch" ) -EPYTEST_DESELECT=( - # unreliable memory counting test - tests/test_vbo_memusage.py::test_sf_2980896 -) - python_test() { - nonfatal epytest || die "Tests failed with ${EPYTHON}" + local EPYTEST_DESELECT=( + # unreliable memory counting test + tests/test_vbo_memusage.py::test_sf_2980896 + ) + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + + nonfatal epytest tests || die "Tests failed with ${EPYTHON}" } src_test() {