add script to run tests

This commit is contained in:
Job Evers-Meltzer 2017-01-21 16:04:38 -06:00
parent 2c9c0da501
commit dc57b62157

12
run_tests.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
set -o xtrace
if [ -z "$@" ]; then
TESTS=tests
else
TESTS="$@"
fi
find -iname "*.pyc" -delete
PYTHONPATH=. trial $TESTS