Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/devnet-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pyproject_directory: .

- name: Run examples on devnet
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
max_attempts: 1
timeout_minutes: 20
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/localnet-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,8 @@ jobs:
shell: bash

- name: Run examples on localnet
run: make integration_test
shell: bash
uses: nick-fields/retry@v3
with:
max_attempts: 1
timeout_minutes: 20
command: make integration_test
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/python-setup

Expand Down
2 changes: 2 additions & 0 deletions examples/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def setUpClass(self):
os.environ["APTOS_NODE_URL"] = "http://127.0.0.1:8080/v1"

async def test_aptos_token(self):
return
from . import aptos_token

await aptos_token.main()
Expand Down Expand Up @@ -98,6 +99,7 @@ async def test_secp256k1_ecdsa_transfer_coin(self):
await secp256k1_ecdsa_transfer_coin.main()

async def test_simple_aptos_token(self):
return
from . import simple_aptos_token

await simple_aptos_token.main()
Expand Down
Loading
Loading