Sets sim verbose to False for unit tests

This commit is contained in:
Sergi Delgado Segura
2019-12-17 17:21:48 +01:00
parent b82065120c
commit d4e7e999e1

View File

@@ -27,7 +27,7 @@ from common.cryptographer import Cryptographer
@pytest.fixture(scope="session")
def run_bitcoind():
bitcoind_thread = Thread(target=run_simulator, kwargs={"mode": "event"})
bitcoind_thread = Thread(target=run_simulator, kwargs={"mode": "event", "verbose": False})
bitcoind_thread.daemon = True
bitcoind_thread.start()