From b3d3e645fc05051bf8d0e12a4886c629f14ea77f Mon Sep 17 00:00:00 2001 From: Austen McClernon Date: Thu, 9 Mar 2023 00:48:50 +0000 Subject: [PATCH] roachtest: unskip kv/restart/nodes=12 Previously, the `kv/restart/nodes=12` roachtest was unable to pass and was skipped. Following the changes introduced for #96521, the test now passes. This commit enables the `kv/restart/nodes=12` roachtest as a weekly test. resolves: #98296 Release note: None --- pkg/cmd/roachtest/tests/kv.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/roachtest/tests/kv.go b/pkg/cmd/roachtest/tests/kv.go index 0097852b5aa3..7533ad7481d8 100644 --- a/pkg/cmd/roachtest/tests/kv.go +++ b/pkg/cmd/roachtest/tests/kv.go @@ -916,8 +916,9 @@ func measureQPS(ctx context.Context, t test.Test, db *gosql.DB, duration time.Du // transfers. func registerKVRestartImpact(r registry.Registry) { r.Add(registry.TestSpec{ - Skip: "#95159", - Name: "kv/restart/nodes=12", + Name: "kv/restart/nodes=12", + // This test is expensive (104vcpu), we run it weekly. + Tags: []string{`weekly`}, Owner: registry.OwnerKV, Cluster: r.MakeClusterSpec(13, spec.CPU(8)), Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {