From: Virgil Dupras Date: Sun, 12 Aug 2018 00:11:13 +0000 (-0400) Subject: dev-python/construct: remove spurious test dependencies X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3b8f3b0fd28d4a5b21cd830472f1878d1b4cac42;p=gentoo.git 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 --- diff --git a/dev-python/construct/construct-2.8.21.ebuild b/dev-python/construct/construct-2.8.21.ebuild index be8e7c29cc9d..a856d066558a 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}" }