diff options
-rw-r--r-- | dev-python/pyaes/pyaes-1.6.1.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
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}" } |