run_all.sh 172 B

1234567891011121314
  1. #!/bin/bash
  2. # source run_all.sh
  3. #
  4. set -e
  5. for f in test_*.py
  6. do
  7. echo "Processing $f script.."
  8. python3 "$f"
  9. done
  10. echo '---------'
  11. echo "All good."
  12. echo '---------'