eth-monitor

Monitor and cache ethereum transactions with match filters
git clone git://git.defalsify.org/eth-monitor.git
Info | Log | Files | Refs | README | LICENSE

run_tests.sh (265B)


      1 #!/bin/bash
      2 
      3 set -a
      4 set -e
      5 set -x
      6 default_pythonpath=$PYTHONPATH:.
      7 export PYTHONPATH=${default_pythonpath:-.}
      8 >&2 echo using pythonpath $PYTHONPATH
      9 for f in `ls tests/*.py`; do
     10 	python $f
     11 done
     12 for f in `ls tests/rules/*.py`; do
     13 	python $f
     14 done
     15 set +x
     16 set +e
     17 set +a