From bf85aa03a518468276ebe04318fd1d09bd10a56f Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 30 Jul 2019 09:02:34 +0200 Subject: dev-python/pyaes: Fix running all tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pyaes/pyaes-1.6.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dev-python/pyaes') 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}" } -- cgit v1.2.3-65-gdbad