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 16F03158086 for ; Thu, 7 Oct 2021 07:21:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2687E088B; Thu, 7 Oct 2021 07:21:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8E68E088B for ; Thu, 7 Oct 2021 07:21:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A8D03433E2 for ; Thu, 7 Oct 2021 07:21:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F9DD14F for ; Thu, 7 Oct 2021 07:21:15 +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: <1633591270.eb7b5f3225404a80c2a773ac9188b42d674a7e3e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess-tee/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild X-VCS-Directories: dev-python/subprocess-tee/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: eb7b5f3225404a80c2a773ac9188b42d674a7e3e X-VCS-Branch: master Date: Thu, 7 Oct 2021 07:21:15 +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: b3a4969d-62be-4b4c-ab4b-a3cf5065b639 X-Archives-Hash: 48f78a698da74e2654361a801ef8ff24 commit: eb7b5f3225404a80c2a773ac9188b42d674a7e3e Author: Michał Górny gentoo org> AuthorDate: Thu Oct 7 06:40:45 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 7 07:21:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb7b5f32 dev-python/subprocess-tee: Enable testing on py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild index 80f643d8365..c715a596b1a 100644 --- a/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild +++ b/dev-python/subprocess-tee/subprocess-tee-0.3.5.ebuild @@ -14,28 +14,19 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="test-full" - REQUIRED_USE="test-full? ( test )" # ansible-molecule is invoked as an executable so no need for PYTHON_USEDEP BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}] dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}] test? ( - $(python_gen_cond_dep ' - dev-python/enrich[${PYTHON_USEDEP}] - ' python3_{8,9}) + dev-python/enrich[${PYTHON_USEDEP}] test-full? ( app-admin/ansible-molecule ) )" distutils_enable_tests pytest -# dev-python/{,en}rich ebuilds do not support python3_10 yet. -# We test fine (modulo some deprecation warnings) against 3.10 under tox, though. python_test() { - if [[ ${EPYTHON} == "python3.10" ]]; then - ewarn "Skipping tests for ${EPYTHON} due to missing dependencies" - return 0 - fi if ! use test-full; then local -x EPYTEST_DESELECT=( "src/${PN/-/_}/test/test_func.py::test_molecule" ) fi