commit: 13a092a55a4b865e423e1f5fa70cdba0919fe235
Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 17 20:22:17 2018 +0000
Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Wed Oct 17 20:22:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13a092a5
dev-python/ratelimit: drop spurious pytest-cov dep
Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-python/ratelimit/ratelimit-1.4.1.ebuild | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/dev-python/ratelimit/ratelimit-1.4.1.ebuild
b/dev-python/ratelimit/ratelimit-1.4.1.ebuild
index 3c01b8f2c10..e91d5f08f03 100644
--- a/dev-python/ratelimit/ratelimit-1.4.1.ebuild
+++ b/dev-python/ratelimit/ratelimit-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -16,11 +16,14 @@ KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="
- test? (
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/pytest-cov[${PYTHON_USEDEP}]
- )"
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+src_prepare() {
+ default
+ # remove --cov args injection
+ rm pytest.ini || die
+}
python_test() {
- py.test || die
+ pytest || die
}