Skip to content

Commit

Permalink
test: try fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Sep 13, 2022
1 parent 042f5d8 commit 57652b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/functional/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import pytest

from ape.api import PluginConfig
from ape.exceptions import NetworkError
from ape.managers.config import DeploymentConfigCollection
from ape_ethereum.ecosystem import NetworkConfig
from tests.functional.conftest import PROJECT_WITH_LONG_CONTRACTS_FOLDER
Expand Down
4 changes: 3 additions & 1 deletion tests/functional/test_contract_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def test_deploy_and_publish_local_network(owner, contract_container):
contract_container.deploy(sender=owner, publish=True)


def test_deploy_and_publish_live_network_no_explorer(owner, project, contract_container, dummy_live_network):
def test_deploy_and_publish_live_network_no_explorer(
owner, project, contract_container, dummy_live_network
):
_ = project # Ensure a project exists (for track_deployment call)
dummy_live_network.__dict__["explorer"] = None
expected_message = "Unable to publish contract - no explorer plugin installed."
Expand Down
1 change: 1 addition & 0 deletions tests/integration/cli/test_networks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from ape.api.networks import LOCAL_NETWORK_NAME
from ape_geth.providers import DEFAULT_SETTINGS

from .utils import run_once, skip_projects_except

_DEFAULT_NETWORKS_TREE = """
Expand Down

0 comments on commit 57652b6

Please sign in to comment.