commit a5ecd2deedf2ccc240f805e81f9bad0e65346183
parent 1b84f463a193786ce430759969096daff64f25d6
Author: nolash <dev@holbrook.no>
Date: Sun, 24 Oct 2021 16:18:52 +0200
Upgrade chainlib, improve test runner
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/python/requirements.txt b/python/requirements.txt
@@ -1,3 +1,3 @@
-chainlib-eth>=0.0.7a4,<0.1.0
+chainlib-eth>=0.0.10a11,<0.1.0
eth-erc20>=0.1.0,<0.2.0
eth-owned>=0.0.3a1,<0.1.0
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