Skip to content

Commit

Permalink
roachtest: unskip kv/restart/nodes=12
Browse files Browse the repository at this point in the history
Previously, the `kv/restart/nodes=12` roachtest was unable to pass and
was skipped. Following the changes introduced for cockroachdb#9652, the test now
passes.

This commit enables the `kv/restart/nodes=12` roachtest as a weekly
test.

informs: cockroachdb#95159
resolves: cockroachdb#98296

Release note: None
  • Loading branch information
kvoli committed Mar 9, 2023
1 parent c0546c7 commit faaa0d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/cmd/roachtest/tests/kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit faaa0d9

Please sign in to comment.