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 9C2E7138350 for ; Sat, 25 Apr 2020 18:45:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB846E0893; Sat, 25 Apr 2020 18:45:04 +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 8AC4EE0893 for ; Sat, 25 Apr 2020 18:45:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8CF4034EFF9 for ; Sat, 25 Apr 2020 18:45:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 454691EA for ; Sat, 25 Apr 2020 18:45:02 +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: <1587840299.8024ec5154cc897759379bde7b1dcb863843e6d4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-subtesthack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild X-VCS-Directories: dev-python/pytest-subtesthack/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8024ec5154cc897759379bde7b1dcb863843e6d4 X-VCS-Branch: master Date: Sat, 25 Apr 2020 18:45:02 +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: cefd46d5-16db-492c-b601-d0f9700651c2 X-Archives-Hash: 6fdc0684d1ffcae29ed8fafcd681bf4d commit: 8024ec5154cc897759379bde7b1dcb863843e6d4 Author: Michał Górny gentoo org> AuthorDate: Sat Apr 25 18:19:48 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 25 18:44:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8024ec51 dev-python/pytest-subtesthack: Enable py3.{7,8}, modernize Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild index 8de886930db..87ae193d067 100644 --- a/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild +++ b/dev-python/pytest-subtesthack/pytest-subtesthack-0.1.1.ebuild @@ -1,9 +1,11 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{6,7,8} ) -PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 DESCRIPTION="A hack for test fixtures, needed for hypothesis inside py.test" @@ -27,5 +29,5 @@ DEPEND="${RDEPEND} python_test() { distutils_install_for_testing - py.test -v || die "Tests fail with ${EPYTHON}" + pytest -vv || die "Tests fail with ${EPYTHON}" }