From: Michał Górny Date: Tue, 30 Jul 2019 07:02:34 +0000 (+0200) Subject: dev-python/pyaes: Fix running all tests X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=bf85aa03a518468276ebe04318fd1d09bd10a56f;p=gentoo.git dev-python/pyaes: Fix running all tests Signed-off-by: Michał Górny --- diff --git a/dev-python/pyaes/pyaes-1.6.1.ebuild b/dev-python/pyaes/pyaes-1.6.1.ebuild index dccde7bbabe1..26c32d780fb3 100644 --- a/dev-python/pyaes/pyaes-1.6.1.ebuild +++ b/dev-python/pyaes/pyaes-1.6.1.ebuild @@ -19,5 +19,10 @@ IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { - ${EPYTHON} tests/test-{aes,blockfeeder,util}.py || die + local t fail= + for t in tests/test-*.py; do + einfo "${t}" + "${EPYTHON}" "${t}" || fail=1 + done + [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" }