Skip to content

Commit

Permalink
Add test parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
tnv1 committed May 31, 2024
1 parent 54c51aa commit 23ffdb6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/interchaintest/chain_start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ func TestStartFeeabs(t *testing.T) {
t.Skip()
}

t.Parallel()

numVals := 1
numFullNodes := 1

Expand Down
3 changes: 3 additions & 0 deletions tests/interchaintest/host_zone_proposal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ func TestHostZoneProposal(t *testing.T) {
if testing.Short() {
t.Skip("skipping in short mode")
}

t.Parallel()

numVals := 1
numFullNodes := 1

Expand Down
3 changes: 3 additions & 0 deletions tests/interchaintest/packet_foward_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ func TestPacketForwardMiddleware(t *testing.T) {
if testing.Short() {
t.Skip("skipping in short mode")
}

t.Parallel()

// Set up chains, users and channels
ctx := context.Background()
chains, users, channels := SetupChain(t, ctx)
Expand Down
3 changes: 3 additions & 0 deletions tests/interchaintest/query_osmosis_twap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ func TestQueryOsmosisTwap(t *testing.T) {
if testing.Short() {
t.Skip("skipping in short mode")
}

t.Parallel()

// Set up chains, users and channels
ctx := context.Background()
chains, users, channels := SetupChain(t, ctx)
Expand Down

0 comments on commit 23ffdb6

Please sign in to comment.