commit 782377adbb48d656ce022cc66b0f59b4126e1ebe parent 65ad5b98f917f7d17f0c776d7ce6458c6b956629 Author: Daven Savoie <daps218@gmail.com> Date: Tue, 14 Sep 2021 18:06:30 +0000 Update run_tests.sh Diffstat:
M | run_tests.sh | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/run_tests.sh b/run_tests.sh @@ -2,7 +2,9 @@ set +e set +x -export PYTHONPATH={$PYTHONPATH:-.} +default_pythonpath=$PYTHONPATH:. +export PYTHONPATH=${default_pythonpath:-.} +>&2 echo using pythonpath $PYTHONPATH for f in `ls tests/*.py`; do python $f if [ $? -gt 0 ]; then