DEBSOURCES
Skip Quicknav
sources / nototools / 0.2.17-1 / tests / run_tests
12345678910
#!/bin/bash for f in *_test.py; do echo ">>> Running $f" python "$f" if [[ "$?" != 0 ]]; then exit 1 fi echo -e "\n" done