Skip to content

Commit

Permalink
skip gordian testing in CI for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Sep 20, 2024
1 parent 58542ae commit cca2574
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/cosmos/chain_gordian_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package cosmos_test

import (
"context"
"os"
"testing"

"github.com/strangelove-ventures/interchaintest/v8"
Expand All @@ -13,7 +14,13 @@ import (
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
)

// go test -timeout 3000s -run ^TestChainGordian$ github.com/strangelove-ventures/interchaintest/v8/examples/cosmos -v
func TestChainGordian(t *testing.T) {
// TODO: this test is only local for now. Will add CI in the future
if os.Getenv("IS_LOCAL_TESTING_GORDIAN") == "" {
t.Skip("skipping test; set IS_LOCAL_TESTING_GORDIAN to run this test")
}

if testing.Short() {
t.Skip("skipping in short mode")
}
Expand Down

0 comments on commit cca2574

Please sign in to comment.