From: Michał Górny Date: Wed, 18 Jul 2018 12:23:13 +0000 (+0200) Subject: dev-python/pyjwt: Remove unnecessary test-deps X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c1da8c001b38a31a93eb41ac70d2fb85940c628f;p=gentoo.git dev-python/pyjwt: Remove unnecessary test-deps --- diff --git a/dev-python/pyjwt/pyjwt-1.5.3.ebuild b/dev-python/pyjwt/pyjwt-1.5.3.ebuild index ae1f2157dead..652713206d13 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() {