mirror of https://github.com/nucypher/nucypher.git
CircleCI: directly use install solc script to dodge pipenv api changes
parent
7a645ebdb8
commit
f1917560a6
|
@ -1,18 +1,16 @@
|
||||||
import contextlib
|
import contextlib
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
from os.path import abspath, dirname
|
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
import maya
|
import maya
|
||||||
import pytest
|
import pytest
|
||||||
from constant_sorrow import constants
|
from constant_sorrow import constants
|
||||||
from eth_tester import EthereumTester
|
|
||||||
from eth_utils import to_checksum_address
|
from eth_utils import to_checksum_address
|
||||||
from sqlalchemy.engine import create_engine
|
from sqlalchemy.engine import create_engine
|
||||||
from web3 import EthereumTesterProvider
|
from web3 import EthereumTesterProvider
|
||||||
|
|
||||||
import nucypher
|
from eth_tester import EthereumTester
|
||||||
from nucypher.blockchain.eth.chains import TesterBlockchain
|
from nucypher.blockchain.eth.chains import TesterBlockchain
|
||||||
from nucypher.blockchain.eth.deployers import PolicyManagerDeployer, NucypherTokenDeployer, MinerEscrowDeployer
|
from nucypher.blockchain.eth.deployers import PolicyManagerDeployer, NucypherTokenDeployer, MinerEscrowDeployer
|
||||||
from nucypher.blockchain.eth.interfaces import DeployerCircumflex
|
from nucypher.blockchain.eth.interfaces import DeployerCircumflex
|
||||||
|
@ -26,6 +24,7 @@ from nucypher.keystore.keypairs import SigningKeypair
|
||||||
from nucypher.utilities.blockchain import make_ursulas, token_airdrop
|
from nucypher.utilities.blockchain import make_ursulas, token_airdrop
|
||||||
from nucypher.utilities.network import MockRestMiddleware
|
from nucypher.utilities.network import MockRestMiddleware
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Setup
|
# Setup
|
||||||
#
|
#
|
||||||
|
@ -222,6 +221,7 @@ def non_ursula_miners(three_agents):
|
||||||
miners=True,
|
miners=True,
|
||||||
bare=True,
|
bare=True,
|
||||||
ursula_starting_port=starting_point)
|
ursula_starting_port=starting_point)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
yield _ursulas
|
yield _ursulas
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in New Issue