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 16C21158086 for ; Sat, 1 Jan 2022 08:23:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED3FA2BC00A; Sat, 1 Jan 2022 08:23:31 +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 A68702BC00A for ; Sat, 1 Jan 2022 08:23:31 +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 5CC45343105 for ; Sat, 1 Jan 2022 08:23:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3D0B1C6 for ; Sat, 1 Jan 2022 08:23:28 +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: <1641025405.c87ae91060b7888de3577bed3e1ebaea0db21789.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-utils/python-utils-2.7.0.ebuild X-VCS-Directories: dev-python/python-utils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c87ae91060b7888de3577bed3e1ebaea0db21789 X-VCS-Branch: master Date: Sat, 1 Jan 2022 08:23:28 +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: 63f74ba0-a64e-4c28-8c05-2b75ad357339 X-Archives-Hash: 595ca75b11a86d3539371e1cd766963b commit: c87ae91060b7888de3577bed3e1ebaea0db21789 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 1 08:23:05 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 1 08:23:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87ae910 dev-python/python-utils: Ignore docs when collecting tests The docs directory does not contain any tests but it triggers import failures when doc dependencies are not installed. Closes: https://bugs.gentoo.org/830383 Signed-off-by: Michał Górny gentoo.org> dev-python/python-utils/python-utils-2.7.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/python-utils/python-utils-2.7.0.ebuild b/dev-python/python-utils/python-utils-2.7.0.ebuild index 151ae849531a..325baeedb039 100644 --- a/dev-python/python-utils/python-utils-2.7.0.ebuild +++ b/dev-python/python-utils/python-utils-2.7.0.ebuild @@ -18,6 +18,10 @@ RDEPEND="dev-python/six[${PYTHON_USEDEP}]" distutils_enable_tests pytest +EPYTEST_IGNORE=( + docs +) + python_prepare_all() { sed -i -e '/--cov/d' -e '/--flake8/d' pytest.ini || die distutils-r1_python_prepare_all