Skip to content

Commit

Permalink
test: add interchain account test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hacheigriega committed Mar 5, 2024
1 parent f6a6919 commit 86c9a1b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/interchaintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
- "ictest-state-sync"
- "ictest-ibc-xfer"
- "ictest-packet-forward-middleware"
- "ictest-ibc-ica"
fail-fast: false

steps:
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@ ictest-ibc-xfer: rm-testcache
ictest-packet-forward-middleware: rm-testcache
cd interchaintest && go test -race -v -run TestPacketForwardMiddleware .

ictest-ibc-ica: rm-testcache
cd interchaintest && go test -race -v -run TestInterchainAccounts .

rm-testcache:
go clean -testcache

Expand Down
12 changes: 6 additions & 6 deletions interchaintest/ica_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ func TestInterchainAccounts(t *testing.T) {
// Get both chains
cf := interchaintest.NewBuiltinChainFactory(zaptest.NewLogger(t), []*interchaintest.ChainSpec{
{
Name: "seda",
ChainConfig: SedaCfg,
Name: "icad",
ChainConfig: ibc.ChainConfig{
Images: []ibc.DockerImage{{Repository: "ghcr.io/cosmos/ibc-go-icad", Version: "v0.1.7", UidGid: "1025:1025"}},
},
},
// pre configured chain pulled from
// https://github.com/strangelove-ventures/heighliner
{
Name: "gaia",
Version: "v14.1.0",
Name: "seda",
ChainConfig: SedaCfg,
},
})

Expand Down

0 comments on commit 86c9a1b

Please sign in to comment.