1
0
Fork 0
powerline/tests/test_python/test.sh
Daniel Baumann 52d7687863
Adding upstream version 2.8.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 14:32:14 +02:00

13 lines
270 B
Bash
Executable file

#!/bin/sh
. tests/shlib/common.sh
enter_suite python final
for file in "$ROOT"/tests/test_python/test_*.py ; do
test_name="${file##*/test_}"
if ! "$PYTHON" "$file" --verbose --catch ; then
fail "${test_name%.py}" F "Failed test(s) from $file"
fi
done
exit_suite