From f15cbac864a9f3592f4f7a7094588c2fbf30c477 Mon Sep 17 00:00:00 2001 From: Marko Date: Tue, 28 Mar 2023 16:20:27 +0200 Subject: [PATCH] chore: skip rpc tests till comet fix issue with data race (#15570) --- client/rpc/rpc_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/rpc/rpc_test.go b/client/rpc/rpc_test.go index 5eb3b866f1..c8911f1a6d 100644 --- a/client/rpc/rpc_test.go +++ b/client/rpc/rpc_test.go @@ -26,6 +26,7 @@ type IntegrationTestSuite struct { } func (s *IntegrationTestSuite) SetupSuite() { + s.T().Skip("disable till comet fixes data races") s.T().Log("setting up integration test suite") cfg, err := network.DefaultConfigWithAppConfig(network.MinimumAppConfig()) @@ -44,6 +45,7 @@ func (s *IntegrationTestSuite) TearDownSuite() { } func (s *IntegrationTestSuite) TestStatusCommand() { + s.T().Skip("data race in comet is causing this to fail") val0 := s.network.Validators[0] cmd := rpc.StatusCommand() @@ -55,6 +57,7 @@ func (s *IntegrationTestSuite) TestStatusCommand() { } func (s *IntegrationTestSuite) TestCLIQueryConn() { + s.T().Skip("data race in comet is causing this to fail") var header metadata.MD testClient := testdata.NewQueryClient(s.network.Validators[0].ClientCtx) @@ -70,6 +73,7 @@ func (s *IntegrationTestSuite) TestCLIQueryConn() { } func (s *IntegrationTestSuite) TestQueryABCIHeight() { + s.T().Skip("data race in comet is causing this to fail") testCases := []struct { name string reqHeight int64