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
This commit is contained in:
Virgil Dupras
2018-08-11 20:11:13 -04:00
parent 884afc996c
commit 3b8f3b0fd2

View File

@@ -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}"
}