commit: 3b8f3b0fd28d4a5b21cd830472f1878d1b4cac42
Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 12 00:11:13 2018 +0000
Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Sun Aug 12 00:14:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8f3b0f
dev-python/construct: remove spurious test dependencies
tox and pytest-cov are not actually needed to run tests.
Package-Manager: Portage-2.3.44, Repoman-2.3.10
dev-python/construct/construct-2.8.21.ebuild | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dev-python/construct/construct-2.8.21.ebuild
b/dev-python/construct/construct-2.8.21.ebuild
index be8e7c29cc9..a856d066558 100644
--- a/dev-python/construct/construct-2.8.21.ebuild
+++ b/dev-python/construct/construct-2.8.21.ebuild
@@ -18,10 +18,8 @@ IUSE="test"
DEPEND="test? (
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/pytest-cov[${PYTHON_USEDEP}]
- dev-python/tox[${PYTHON_USEDEP}]
)"
python_test() {
- py.test -vv || die "Tests failed under ${EPYTHON}"
+ pytest -vv || die "Tests failed under ${EPYTHON}"
}