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 14838138334 for ; Wed, 18 Jul 2018 12:54:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E33DE085A; Wed, 18 Jul 2018 12:54:43 +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 F0E9EE085A for ; Wed, 18 Jul 2018 12:54:42 +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 6934C335C7A for ; Wed, 18 Jul 2018 12:54:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E711835C for ; Wed, 18 Jul 2018 12:54:39 +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: <1531918474.c1da8c001b38a31a93eb41ac70d2fb85940c628f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyjwt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyjwt/pyjwt-1.5.3.ebuild X-VCS-Directories: dev-python/pyjwt/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c1da8c001b38a31a93eb41ac70d2fb85940c628f X-VCS-Branch: master Date: Wed, 18 Jul 2018 12:54:39 +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-Archives-Salt: 70040bd5-50ea-473d-8e7f-c4bfc70d7e5a X-Archives-Hash: 40d26d21291a56d2feaff464ca0db9d5 commit: c1da8c001b38a31a93eb41ac70d2fb85940c628f Author: Michał Górny gentoo org> AuthorDate: Wed Jul 18 12:23:13 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 18 12:54:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1da8c00 dev-python/pyjwt: Remove unnecessary test-deps dev-python/pyjwt/pyjwt-1.5.3.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-python/pyjwt/pyjwt-1.5.3.ebuild b/dev-python/pyjwt/pyjwt-1.5.3.ebuild index ae1f2157dea..652713206d1 100644 --- a/dev-python/pyjwt/pyjwt-1.5.3.ebuild +++ b/dev-python/pyjwt/pyjwt-1.5.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -24,8 +24,6 @@ DEPEND=" test? ( >=dev-python/cryptography-1.4.0[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pytest-runner[${PYTHON_USEDEP}] )" S="${WORKDIR}"/${MY_PN}-${PV} @@ -34,11 +32,14 @@ python_prepare_all() { find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning __pycache__ failed" find . -name '*.pyc' -exec rm -f {} \; || die "Cleaing *.pyc failed" + # enables coverage, we don't need that + rm setup.cfg || die + distutils-r1_python_prepare_all } python_test() { - esetup.py test + pytest -vv || die "Tests fail with ${EPYTHON}" } pkg_postinst() {