erc20-faucet

ERC20 token faucet
Log | Files | Refs

commit e061d31603857503cf3f6a48b878690028561648
parent 5c68f9de1dcfe8d958a83016cab69cb8dd096028
Author: nolash <dev@holbrook.no>
Date:   Sun, 24 Oct 2021 16:14:50 +0200

Improve test runner

Diffstat:
Mpython/run_tests.sh | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/python/run_tests.sh b/python/run_tests.sh @@ -2,6 +2,8 @@ set -e set -x +default_pythonpath=$PYTHONPATH:. +export PYTHONPATH=${default_pythonpath:-.} for f in `ls tests/*.py`; do python $f if [ $? -gt 0 ]; then