Skip to content

Commit

Permalink
Update test_current_development_version
Browse files Browse the repository at this point in the history
We are using goerli to test and don't expect working ropsten and
rinkeby (without rollup) deployments, anymore.
  • Loading branch information
karlb committed Apr 28, 2022
1 parent 00ba877 commit 6b1440a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions raiden_contracts/tests/test_contracts_compilation.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,9 @@ def test_current_development_version() -> None:
assert contracts_precompiled_path().exists()

# deployment files exist
assert contracts_deployed_path(CHAINNAME_TO_ID["rinkeby"]).exists()
assert contracts_deployed_path(CHAINNAME_TO_ID["ropsten"]).exists()
assert contracts_deployed_path(CHAINNAME_TO_ID["goerli"]).exists()
# deployment files for service contracts also exist
assert contracts_deployed_path(CHAINNAME_TO_ID["rinkeby"], services=True).exists()
assert contracts_deployed_path(CHAINNAME_TO_ID["ropsten"], services=True).exists()
assert contracts_deployed_path(CHAINNAME_TO_ID["goerli"], services=True).exists()


def test_red_eyes_version() -> None:
Expand Down

0 comments on commit 6b1440a

Please sign in to comment.