From: Michał Górny Date: Sat, 25 Apr 2020 17:01:40 +0000 (+0200) Subject: dev-python/pyrqlite: Remove useless test deps X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=52261b12fb2ee7e69c4b1d8e13f0537bbc656f8f;p=gentoo.git dev-python/pyrqlite: Remove useless test deps Signed-off-by: Michał Górny --- diff --git a/dev-python/pyrqlite/pyrqlite-2.0.ebuild b/dev-python/pyrqlite/pyrqlite-2.0.ebuild index 8b7ef41d1320..f442cd409050 100644 --- a/dev-python/pyrqlite/pyrqlite-2.0.ebuild +++ b/dev-python/pyrqlite/pyrqlite-2.0.ebuild @@ -18,22 +18,10 @@ SRC_URI="${EGIT_REPO_URI%.git}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pylint[${PYTHON_USEDEP}] - )" +distutils_enable_tests pytest src_prepare() { sed -e "s:^__version__ = .*:__version__ = '${PV}':" -i src/${PN}/constants.py || die distutils-r1_src_prepare } - -python_test() { - esetup.py test || die "tests failed" - esetup.py lint -f text -E || die "pylint failed" -}