funga

Signer and keystore daemon and library for cryptocurrency software development
Info | Log | Files | Refs | README | LICENSE

run_tests.sh (200B)


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