diff --git a/python/CHANGELOG b/python/CHANGELOG index 92805f7..2f1e8d9 100644 --- a/python/CHANGELOG +++ b/python/CHANGELOG @@ -1,5 +1,6 @@ * 0.0.10-pending - Upgrade chainlib dependency, providing customizable jsonrpc id + - Move to chainlib-eth * 0.0.9-unreleased * 0.0.8-unreleased * 0.0.7-unreleased diff --git a/python/VERSION b/python/VERSION index 8acdd82..7c1886b 100644 --- a/python/VERSION +++ b/python/VERSION @@ -1 +1 @@ -0.0.1 +0.0.10 diff --git a/python/run_tests.sh b/python/run_tests.sh new file mode 100644 index 0000000..b8e3d91 --- /dev/null +++ b/python/run_tests.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -e +set -x +for f in `ls tests/*.py`; do + python $f + if [ $? -gt 0 ]; then + exit 1 + fi +done +set +x +set +e