Skip to content

Commit

Permalink
Merge branch 'main' of github.com:gnarvaja/eth-prototype into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarvaja committed Jul 17, 2023
2 parents f05392f + 87a5bad commit cb6dca0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ web3 =
web3
eth-event

defender =
boto3
warrant @ git+https://github.com/gnarvaja/warrant.git#egg=warrant

gmpy2 =
gmpy2

Expand All @@ -88,6 +92,8 @@ testing-w3 =
pytest
eth-event
pytest-cov
boto3
warrant @ git+https://github.com/gnarvaja/warrant.git#egg=warrant

[options.entry_points]
# Add here console scripts like:
Expand Down
9 changes: 9 additions & 0 deletions tests/test_defender.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import os
import pytest


def test_dependencies():
if os.environ.get("TEST_ENV", None) != "web3py":
pytest.skip("Defender relay dependencies are only installed in web3 env")
from ethproto import defender_relay
assert defender_relay

0 comments on commit cb6dca0

Please sign in to comment.