Skip to content

Commit

Permalink
continuing vs skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
stat committed Jan 17, 2025
1 parent 58385cb commit 6250def
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_wallet_transfer(imported_wallet):
try:
imported_wallet.faucet().wait()
except FaucetLimitReachedError:
pytest.skip("Faucet limit reached")
print("Faucet limit reached, continuing...")

destination_wallet = Wallet.create()

Expand Down Expand Up @@ -102,8 +102,13 @@ def test_wallet_transfer(imported_wallet):
@pytest.mark.e2e
def test_transaction_history(imported_wallet):
"""Test transaction history retrieval."""
# create a transaction
try:
imported_wallet.faucet().wait()
except FaucetLimitReachedError:
print("Faucet limit reached, continuing...")

destination_wallet = Wallet.create()

transfer = imported_wallet.transfer(
amount=Decimal("0.000000001"),
asset_id="eth",
Expand Down

0 comments on commit 6250def

Please sign in to comment.