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 88F6D158086 for ; Thu, 14 Oct 2021 12:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CB80E0869; Thu, 14 Oct 2021 12:12:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFEAEE0869 for ; Thu, 14 Oct 2021 12:12:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 867CE342E5D for ; Thu, 14 Oct 2021 12:12:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2F7F155 for ; Thu, 14 Oct 2021 12:12:43 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1634213548.fec3a1ebbe1b74519bbb910e6d436f079694602f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpydoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/numpydoc/numpydoc-1.1.0.ebuild X-VCS-Directories: dev-python/numpydoc/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: fec3a1ebbe1b74519bbb910e6d436f079694602f X-VCS-Branch: master Date: Thu, 14 Oct 2021 12:12:43 +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: e7ff6d41-9457-48cd-b0c9-e6747f395361 X-Archives-Hash: 5d8f4e3a9085e17c3d2002ebc343b379 commit: fec3a1ebbe1b74519bbb910e6d436f079694602f Author: Arthur Zamarin gentoo org> AuthorDate: Thu Oct 14 11:44:47 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Oct 14 12:12:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec3a1eb dev-python/numpydoc: enable py3.10, cleaner test deselect Signed-off-by: Arthur Zamarin gentoo.org> dev-python/numpydoc/numpydoc-1.1.0.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-python/numpydoc/numpydoc-1.1.0.ebuild b/dev-python/numpydoc/numpydoc-1.1.0.ebuild index ff388752840..5693d12146f 100644 --- a/dev-python/numpydoc/numpydoc-1.1.0.ebuild +++ b/dev-python/numpydoc/numpydoc-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 @@ -30,14 +30,14 @@ distutils_enable_tests pytest src_prepare() { sed -i -e 's:--cov-report= --cov=numpydoc::' setup.cfg || die - # these require Internet (intersphinx) - sed -e 's:test_MyClass:_&:' \ - -e 's:test_my_function:_&:' \ - -i numpydoc/tests/test_full.py || die - distutils-r1_src_prepare } python_test() { - pytest -vv --pyargs numpydoc || die "Tests failed with ${EPYTHON}" + local EPYTEST_DESELECT=( + # these require Internet (intersphinx) + numpydoc/tests/test_full.py::test_MyClass + numpydoc/tests/test_full.py::test_my_function + ) + epytest --pyargs numpydoc }