mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-23 12:26:45 +01:00
18 lines
265 B
Bash
18 lines
265 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/*.py`; do
|
||
|
python $f
|
||
|
done
|
||
|
for f in `ls tests/rules/*.py`; do
|
||
|
python $f
|
||
|
done
|
||
|
set +x
|
||
|
set +e
|
||
|
set +a
|