diff --git a/pkg/cli/democluster/demo_cluster_test.go b/pkg/cli/democluster/demo_cluster_test.go index 91070e9057d3..0f1781a95848 100644 --- a/pkg/cli/democluster/demo_cluster_test.go +++ b/pkg/cli/democluster/demo_cluster_test.go @@ -260,6 +260,7 @@ func TestTransientClusterMultitenant(t *testing.T) { // This test is too slow to complete under the race detector, sometimes. skip.UnderRace(t) skip.UnderStress(t) + skip.WithIssue(t, 94862) demoCtx := newDemoCtx() // Set up an empty 3-node cluster with tenants on each node. diff --git a/pkg/cli/interactive_tests/test_sql_mem_monitor.tcl b/pkg/cli/interactive_tests/test_sql_mem_monitor.tcl.disabled similarity index 100% rename from pkg/cli/interactive_tests/test_sql_mem_monitor.tcl rename to pkg/cli/interactive_tests/test_sql_mem_monitor.tcl.disabled diff --git a/pkg/sql/explain_test.go b/pkg/sql/explain_test.go index a5e90b12a727..a398e0f314da 100644 --- a/pkg/sql/explain_test.go +++ b/pkg/sql/explain_test.go @@ -332,7 +332,7 @@ func TestExplainMVCCSteps(t *testing.T) { skip.UnderMetamorphic(t, "this test expects a precise number of scan requests, which is not upheld "+ "in the metamorphic configuration that edits the kv batch size.") - + skip.WithIssue(t, 94881) ctx := context.Background() srv, godb, _ := serverutils.StartServer(t, base.TestServerArgs{Insecure: true}) defer srv.Stopper().Stop(ctx)