Skip to content

Commit

Permalink
kv: mark kvnemesis tests as "medium" sized
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nvanbenschoten committed Sep 20, 2023
1 parent 5efd9b4 commit 93cc706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/kv/kvnemesis/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ go_library(

go_test(
name = "kvnemesis_test",
size = "small",
size = "medium",
srcs = [
"applier_test.go",
"engine_test.go",
Expand All @@ -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 = [
Expand Down

0 comments on commit 93cc706

Please sign in to comment.