dev-python/click-log: Enable the test suite

This commit is contained in:
Michał Górny
2017-04-22 16:22:50 +02:00
parent 1d57294760
commit 9e58f2550d

View File

@@ -13,9 +13,14 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
IUSE="test"
DEPEND="dev-python/click[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
RDEPEND="dev-python/click[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
DOCS=( README.rst )
python_test() {
py.test -v || die "Tests fail with ${EPYTHON}"
}