From 0671e3faa9d48182d214b920aec8d26651a6312c Mon Sep 17 00:00:00 2001 From: nolash Date: Mon, 28 Jun 2021 09:08:56 +0200 Subject: [PATCH] Move to chainlib-eth --- python/CHANGELOG | 1 + python/VERSION | 2 +- python/run_tests.sh | 12 ++++++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 python/run_tests.sh 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