Skip to content

Commit 05b739b

Browse files
committed
startup: allow test to run in nightly stress jobs
The change in #154071 incorrectly marked the test as skippable in nightly runs. Fix by allowing the test to run by checking the status of `skip.NightlyStress`. Release note: None.
1 parent 4ddb3e2 commit 05b739b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/util/startup/startup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func TestStartupFailureRandomRange(t *testing.T) {
8989
// CI. We also skip race builds as the test uses multiple nodes, which can
9090
// cause the test to grind to a halt and flake out.
9191
skip.UnderRace(t, "6 nodes with replication is too slow for race")
92-
if !skip.Stress() {
92+
if !skip.NightlyStress() {
9393
skip.IgnoreLint(t, "test takes 30s to run due to circuit breakers and timeouts")
9494
}
9595

0 commit comments

Comments
 (0)