Skip geth integration alltogether until #2074

pull/2177/head
Kieran Prasch 2020-08-06 16:44:02 -07:00 committed by jMyles
parent 533a003a98
commit c6b56ed5e5
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@
import os import os
import pytest
from eth_utils import is_checksum_address, to_checksum_address from eth_utils import is_checksum_address, to_checksum_address
from nucypher.blockchain.eth.actors import ContractAdministrator 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) assert is_checksum_address(new_account)
@pytest.mark.skip('See PR #2074')
@skip_on_circleci @skip_on_circleci
def test_geth_deployment_integration(instant_geth_dev_node, test_registry): def test_geth_deployment_integration(instant_geth_dev_node, test_registry):
blockchain = BlockchainDeployerInterface(provider_process=instant_geth_dev_node, poa=True) # always poa here. blockchain = BlockchainDeployerInterface(provider_process=instant_geth_dev_node, poa=True) # always poa here.