Merge pull request #2644 from KPrasch/skipper

Temporary skip for contract upgradeability test
pull/2646/head
KPrasch 2021-04-14 15:06:24 -07:00 committed by GitHub
commit 82ebce698a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,8 @@ from nucypher.crypto.powers import TransactingPower
from tests.constants import INSECURE_DEVELOPMENT_PASSWORD
from tests.fixtures import make_token_economics
from tests.utils.blockchain import free_gas_price_strategy
import pytest
USER = "nucypher"
REPO = "nucypher"
@ -133,6 +135,7 @@ def skip_test(blockchain_interface: BlockchainDeployerInterface, contract_name:
return force_skip or len(raw_contracts[contract_name]) == 1
@pytest.mark.skip() # TODO: Unskip this test
def test_upgradeability(temp_dir_path):
# Prepare remote source for compilation
download_github_dir(GITHUB_SOURCE_LINK, temp_dir_path)