Skip to content

Commit

Permalink
make ictest-icsconsumer
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Nov 29, 2024
1 parent 911c626 commit b9642b4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/interchaintest-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ jobs:
- "ictest-packetforward"
- "ictest-tokenfactory"
- "ictest-ratelimit"
- "ictest-ics"
- "ictest-ics" # direct provider integration verifiction
- "ictest-icsconsumer" # Consumer<>Provider actual
fail-fast: false

steps:
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ ictest-ics:
@echo "Running ICS e2e test"
@cd interchaintest && go test -race -v -run TestICSProviderSuite ./integration

ictest-icsconsumer:
@echo "Running ICS Consumer e2e test"
@cd interchaintest && go test -race -v -run TestICS6Consumer ./icsconsumer

ictest-wasm:
@echo "Running Cosmwasm e2e test"
@cd interchaintest && go test -race -v -run TestCosmWasmIntegration .
Expand Down
3 changes: 1 addition & 2 deletions interchaintest/icsconsumer/consumer_launch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ func TestICS6Consumer(t *testing.T) {
Suite: chainsuite.NewSuite(chainsuite.SuiteConfig{
CreateRelayer: true,
ChainSpec: &interchaintest.ChainSpec{
// Two or Six. uses less as determinism would be caught upstream
NumValidators: &chainsuite.TwoValidators,
NumValidators: &chainsuite.SixValidators,
ChainConfig: e2e.DefaultChainConfig,
},
}),
Expand Down
2 changes: 0 additions & 2 deletions interchaintest/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import (
)

var (
VotingPeriod = "15s"
MaxDepositPeriod = "10s"
ProviderSlashingWindow = 10
DowntimeJailDuration = 10 * time.Second
CommitTimeout = 4 * time.Second
Expand Down

0 comments on commit b9642b4

Please sign in to comment.