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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 097C41580B9 for ; Wed, 25 Aug 2021 11:41:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34E32E0878; Wed, 25 Aug 2021 11:41:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98B85E0878 for ; Wed, 25 Aug 2021 11:41:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64EF6335CD6 for ; Wed, 25 Aug 2021 11:41:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80BB37B4 for ; Wed, 25 Aug 2021 11:41:23 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1629891662.4e7aa931a2fac2dd59ebaaf48c936cffd52340c1.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylama/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pylama/pylama-7.7.1-r1.ebuild X-VCS-Directories: dev-python/pylama/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 4e7aa931a2fac2dd59ebaaf48c936cffd52340c1 X-VCS-Branch: master Date: Wed, 25 Aug 2021 11:41:23 +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: f9beda04-cc2a-4780-939c-2bc17da02b32 X-Archives-Hash: b62169e40bf304d6df4f718737161393 commit: 4e7aa931a2fac2dd59ebaaf48c936cffd52340c1 Author: Louis Sautier gentoo org> AuthorDate: Wed Aug 25 11:35:56 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Aug 25 11:41:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e7aa931 dev-python/pylama: enable py3.10, epytest, fix setuptools dep. Signed-off-by: Louis Sautier gentoo.org> dev-python/pylama/pylama-7.7.1-r1.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild b/dev-python/pylama/pylama-7.7.1-r1.ebuild index 3bc25306aca..a7fb5370fb2 100644 --- a/dev-python/pylama/pylama-7.7.1-r1.ebuild +++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild @@ -3,8 +3,7 @@ EAPI="7" -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_USE_SETUPTOOLS="rdepend" +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -41,8 +40,10 @@ python_prepare_all() { } python_test() { - # Disable eradicate until it is fixed: - # https://github.com/klen/pylama/issues/190 - pytest -vv tests --deselect tests/test_linters.py::test_eradicate \ - || die "Tests failed with ${EPYTHON}" + local EPYTEST_DESELECT=( + # Disable eradicate until it is fixed: + # https://github.com/klen/pylama/issues/190 + tests/test_linters.py::test_eradicate + ) + epytest tests }