13 lines
200 B
Bash
13 lines
200 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
default_pythonpath=$PYTHONPATH:.
|
||
|
export PYTHONPATH=${default_pythonpath:-.}
|
||
|
>&2 echo using pythonpath $PYTHONPATH
|
||
|
for f in `ls tests/*.py`; do
|
||
|
python $f
|
||
|
done
|
||
|
set +x
|
||
|
set +e
|