mirror of
git://holbrook.no/eth-token-index
synced 2024-11-01 01:16:46 +01:00
15 lines
198 B
Bash
15 lines
198 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
default_pythonpath=$PYTHONPATH:.
|
|
export PYTHONPATH=${default_pythonpath:-.}
|
|
for f in `ls tests/*.py`; do
|
|
python $f
|
|
if [ $? -gt 0 ]; then
|
|
exit 1
|
|
fi
|
|
done
|
|
set +x
|
|
set +e
|