Skip to content

Commit

Permalink
ci: add eigenda-client testnet-integration test to integration-tests.…
Browse files Browse the repository at this point in the history
…yml workflow (#820)
  • Loading branch information
samlaf authored Oct 23, 2024
1 parent a1119bd commit 38fda78
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: '1.21' # The Go version to download (if necessary) and use.
go-version: "1.21" # The Go version to download (if necessary) and use.
- run: go version

- name: Checkout EigenDA
Expand Down Expand Up @@ -79,6 +79,9 @@ jobs:
- name: Node Plugin
run: go test -v ./node/plugin/tests

- name: eigenda-client
run: go test -v ./api/clients --testnet-integration

- name: Graph Indexer
run: make build && go test -v ./core/thegraph

Expand Down
5 changes: 4 additions & 1 deletion api/clients/eigenda_client_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ func TestClientUsingTestnet(t *testing.T) {
StatusQueryRetryInterval: 5 * time.Second,
CustomQuorumIDs: []uint{},
SignerPrivateKeyHex: "2d23e142a9e86a9175b9dfa213f20ea01f6c1731e09fa6edf895f70fe279cbb1",
WaitForFinalization: true,
// Waiting for finality adds 12 minutes to the test, and is not necessary
// because we already test for this correct behavior in the unit tests using a mock disperser
// which is much faster.
WaitForFinalization: false,
})
data := "hello world!"
assert.NoError(t, err)
Expand Down

0 comments on commit 38fda78

Please sign in to comment.