run_tests.sh (219B)
1 #!/bin/bash 2 3 set -a 4 set -e 5 set -x 6 default_pythonpath=$PYTHONPATH:. 7 export PYTHONPATH=${default_pythonpath:-.} 8 >&2 echo using pythonpath $PYTHONPATH 9 for f in `ls tests/test_*.py`; do 10 python $f 11 done 12 set +x 13 set +e 14 set +a