Skip to content

Commit 5215082

Browse files
craig[bot]nicktrav
andcommitted
Merge #154291
154291: startup: allow test to run in nightly stress jobs r=rafiss a=nicktrav 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`. Fix #123908. Release note: None. Epic: None. Co-authored-by: Nick Travers <[email protected]>
2 parents 26de769 + 05b739b commit 5215082

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)