From 93cc70657a6092cb2fc5798875bb10152c1dafa4 Mon Sep 17 00:00:00 2001 From: Nathan VanBenschoten Date: Wed, 20 Sep 2023 13:10:17 -0400 Subject: [PATCH] kv: mark kvnemesis tests as "medium" sized Fixes #110464. Fixes #110519. This commit marks the kvnemesis tests as "medium" size and increases their timeout from 55s to 295s, which is inline with other "medium" size tests. The slowest of the tests in this package is `TestKVNemesisMultiNode`, which regularly takes about 35s to run on a gceworker. It's not surprising that we were occasionally seeing timeouts in CI with the 55s timeout. Release note: None --- pkg/kv/kvnemesis/BUILD.bazel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kv/kvnemesis/BUILD.bazel b/pkg/kv/kvnemesis/BUILD.bazel index 1c24bfffc06b..7aea6dd20000 100644 --- a/pkg/kv/kvnemesis/BUILD.bazel +++ b/pkg/kv/kvnemesis/BUILD.bazel @@ -58,7 +58,7 @@ go_library( go_test( name = "kvnemesis_test", - size = "small", + size = "medium", srcs = [ "applier_test.go", "engine_test.go", @@ -68,7 +68,7 @@ go_test( "operations_test.go", "validator_test.go", ], - args = ["-test.timeout=55s"], + args = ["-test.timeout=295s"], data = glob(["testdata/**"]), embed = [":kvnemesis"], deps = [