armour/scripts/tests.sh
Ari Archer 850eeb52ef
implement gen.gen, improve gen.info formulas
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2023-10-14 19:16:31 +03:00

15 lines
165 B
Bash
Executable file

#!/usr/bin/env sh
set -eu
main() {
cd tests
for pfile in ./test_*.py; do
echo " * running $pfile"
python3 "$pfile"
done
}
main "$@"