Skip to content

Commit

Permalink
first pass stabalizing e2e test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stat committed Jan 22, 2025
1 parent 7511ab1 commit 2ffe263
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python: ["3.10", "3.11", "3.12"]

Expand Down
6 changes: 1 addition & 5 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,8 @@ def test_wallet_transfer(imported_wallet):

transfer = imported_wallet.transfer(
amount=Decimal("0.000000001"), asset_id="eth", destination=destination_wallet
)

transfer.wait()
time.sleep(2)
).wait()

assert transfer is not None
assert transfer.status.value == "complete"

final_source_balance = Decimal(str(imported_wallet.balances().get("eth", 0)))
Expand Down

0 comments on commit 2ffe263

Please sign in to comment.