From c6b56ed5e5da55118c9164fcb9ced5d802e5a4c8 Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Thu, 6 Aug 2020 16:44:02 -0700 Subject: [PATCH] Skip geth integration alltogether until #2074 --- tests/acceptance/blockchain/clients/test_geth_integration.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/acceptance/blockchain/clients/test_geth_integration.py b/tests/acceptance/blockchain/clients/test_geth_integration.py index 57ff8c2e6..59acadc8a 100644 --- a/tests/acceptance/blockchain/clients/test_geth_integration.py +++ b/tests/acceptance/blockchain/clients/test_geth_integration.py @@ -17,6 +17,7 @@ import os +import pytest from eth_utils import is_checksum_address, to_checksum_address from nucypher.blockchain.eth.actors import ContractAdministrator @@ -55,6 +56,7 @@ def test_geth_create_new_account(instant_geth_dev_node): assert is_checksum_address(new_account) +@pytest.mark.skip('See PR #2074') @skip_on_circleci def test_geth_deployment_integration(instant_geth_dev_node, test_registry): blockchain = BlockchainDeployerInterface(provider_process=instant_geth_dev_node, poa=True) # always poa here.