chainsyncer

Blockchain syncer driver
Log | Files | Refs | LICENSE

commit 4bda7522ab62613efaa2e4f2af49b5f3de4780f4
parent d27bcaa9f5142eea9ef1685f8e3a25dca878fced
Author: lash <dev@holbrook.no>
Date:   Wed, 20 Apr 2022 15:28:12 +0000

Move store tests to separate dir, run last

Diffstat:
Mrun_tests.sh | 7+++++++
Rtests/test_fs.py -> tests/store/test_1_fs.py | 0
Rtests/test_rocksdb.py -> tests/store/test_rocksdb.py | 0
3 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/run_tests.sh b/run_tests.sh @@ -8,5 +8,12 @@ for f in `ls tests/*.py`; do exit fi done + +for f in `ls tests/store/*.py`; do + python $f + if [ $? -gt 0 ]; then + exit + fi +done set +x set +e diff --git a/tests/test_fs.py b/tests/store/test_1_fs.py diff --git a/tests/test_rocksdb.py b/tests/store/test_rocksdb.py