mirror of
git://holbrook.no/erc20-demurrage-token
synced 2024-11-05 10:06:45 +01:00
15 lines
219 B
Bash
15 lines
219 B
Bash
#!/bin/bash
|
|
|
|
set -a
|
|
set -e
|
|
set -x
|
|
default_pythonpath=$PYTHONPATH:.
|
|
export PYTHONPATH=${default_pythonpath:-.}
|
|
>&2 echo using pythonpath $PYTHONPATH
|
|
for f in `ls tests/test_*.py`; do
|
|
python $f
|
|
done
|
|
set +x
|
|
set +e
|
|
set +a
|