From cca2574f4e5423d9ac4deae071382995f5188aff Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Fri, 20 Sep 2024 11:08:21 -0500 Subject: [PATCH] skip gordian testing in CI for now --- examples/cosmos/chain_gordian_test.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/cosmos/chain_gordian_test.go b/examples/cosmos/chain_gordian_test.go index 2041ce839..e94679c38 100644 --- a/examples/cosmos/chain_gordian_test.go +++ b/examples/cosmos/chain_gordian_test.go @@ -2,6 +2,7 @@ package cosmos_test import ( "context" + "os" "testing" "github.com/strangelove-ventures/interchaintest/v8" @@ -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") }