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 136DE15817D for ; Tue, 4 Jun 2024 05:41:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08C7C2BC04C; Tue, 4 Jun 2024 05:41:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 DD2E42BC04C for ; Tue, 4 Jun 2024 05:41:13 +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 3579933BF29 for ; Tue, 4 Jun 2024 05:41:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 609371C66 for ; Tue, 4 Jun 2024 05:41:10 +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: <1717479356.42a9a117927b256cbffafbe50df2806253eac2c4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/img2pdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/img2pdf/img2pdf-0.5.1.ebuild X-VCS-Directories: media-gfx/img2pdf/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 42a9a117927b256cbffafbe50df2806253eac2c4 X-VCS-Branch: master Date: Tue, 4 Jun 2024 05:41:10 +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: 54236576-3cc5-4f76-b314-3e5839856bc1 X-Archives-Hash: 63a710d805a7a6792882e4a9554dc851 commit: 42a9a117927b256cbffafbe50df2806253eac2c4 Author: Michał Górny gentoo org> AuthorDate: Tue Jun 4 05:35:56 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 4 05:35:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a9a117 media-gfx/img2pdf: Speed testing up Signed-off-by: Michał Górny gentoo.org> media-gfx/img2pdf/img2pdf-0.5.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-gfx/img2pdf/img2pdf-0.5.1.ebuild b/media-gfx/img2pdf/img2pdf-0.5.1.ebuild index 623b63caa284..156509f263af 100644 --- a/media-gfx/img2pdf/img2pdf-0.5.1.ebuild +++ b/media-gfx/img2pdf/img2pdf-0.5.1.ebuild @@ -41,6 +41,7 @@ RDEPEND=" gui? ( $(python_gen_impl_dep tk) ) " +EPYTEST_XDIST=1 distutils_enable_tests pytest src_prepare() { @@ -52,7 +53,7 @@ src_prepare() { fi } -src_test() { +python_test() { local EPYTEST_DESELECT=( # https://gitlab.mister-muffin.de/josch/img2pdf/issues/187 src/img2pdf_test.py::test_miff_cmyk8 @@ -65,5 +66,6 @@ src_test() { ) fi - distutils-r1_src_test + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest }