contract-registry

Ethereum Smart Contract key-value registry
Log | Files | Refs

commit 6abe08f2f5473219aefb40604f2f20ec855a936b
parent faa9e71bac788e5d83049cb62f98d96cddaf6cc1
Author: lash <dev@holbrook.no>
Date:   Sun, 26 Mar 2023 06:46:37 +0100

remove conftest file

Diffstat:
Mpython/run_tests.sh | 2+-
Dpython/tests/conftest.py | 4----
2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/python/run_tests.sh b/python/run_tests.sh @@ -4,7 +4,7 @@ set -e set -x default_pythonpath=$PYTHONPATH:. export PYTHONPATH=${default_pythonpath:-.} -for f in `ls tests/*.py`; do +for f in `ls tests/test_*.py`; do python $f if [ $? -gt 0 ]; then exit 1 diff --git a/python/tests/conftest.py b/python/tests/conftest.py @@ -1,4 +0,0 @@ -# external imports -from chainlib.eth.pytest import * -from eth_contract_registry.pytest import * -