From 6250defd448f15263d97bfac4c90933c5140ae5a Mon Sep 17 00:00:00 2001 From: Christopher Gerber Date: Thu, 16 Jan 2025 16:30:00 -0800 Subject: [PATCH] continuing vs skipping --- tests/test_e2e.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/test_e2e.py b/tests/test_e2e.py index e8145ed..47f2d97 100644 --- a/tests/test_e2e.py +++ b/tests/test_e2e.py @@ -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() @@ -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",