-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: mark test-crypto-keygen flaky on windows #41207
Conversation
Refs: nodejs#41206 This test seems to be failing regularly on windows with a timeout. Mark it slow to reduce CI noise until it gets investigated. Signed-off-by: Michael Dawson <mdawson@devrus.com>
Identified as one of the top intermittent failures in recent reliability reports as part of our Red Hat team day to see what we could do to help move CI closer to green. |
test/parallel/parallel.status
Outdated
@@ -11,6 +11,8 @@ prefix parallel | |||
test-timers-immediate-queue: PASS,FLAKY | |||
# https://github.com/nodejs/node/issues/23277 | |||
test-worker-memory: PASS,FLAKY | |||
# https://github.com/nodejs/node/issues/41206 | |||
test-crypto-keygen: SLOW |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Marking a test SLOW
has no effect unless the test runner is run with --flaky-tests=skip
which is not the case for Windows test builds (which run with --flaky-tests=dontcare
but SLOW
test are not FLAKY
):
Lines 1703 to 1704 in a257294
elif (options.flaky_tests == SKIP) and (set([SLOW, FLAKY]) & case.outcomes): | |
return False |
See #23251 for when SLOW
was introduced.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@richardlau thanks for pointing that out. Updated to mark as flaky instead.
Commit Queue failed- Loading data for nodejs/node/pull/41207 ✔ Done loading data for nodejs/node/pull/41207 ----------------------------------- PR info ------------------------------------ Title test: mark test-crypto-keygen flaky on windows (#41207) Author Michael Dawson (@mhdawson) Branch mhdawson:slow-windows -> nodejs:master Labels test, needs-ci Commits 2 - test: mark test-crypto-keygen slow on windows - Update parallel.status Committers 2 - Michael Dawson - GitHub PR-URL: https://github.com/nodejs/node/pull/41207 Refs: https://github.com/nodejs/node/issues/41206 Reviewed-By: Richard Lau Reviewed-By: James M Snell ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/41207 Refs: https://github.com/nodejs/node/issues/41206 Reviewed-By: Richard Lau Reviewed-By: James M Snell -------------------------------------------------------------------------------- ℹ This PR was created on Thu, 16 Dec 2021 20:20:55 GMT ✔ Approvals: 2 ✔ - Richard Lau (@richardlau) (TSC): https://github.com/nodejs/node/pull/41207#pullrequestreview-834630872 ✔ - James M Snell (@jasnell) (TSC): https://github.com/nodejs/node/pull/41207#pullrequestreview-835346669 ✖ Last GitHub CI failed ✖ No Jenkins CI runs detected -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/1598856323 |
Landed in eee1a6f |
Refs: nodejs#41206 This test seems to be failing regularly on windows with a timeout. Mark it slow to reduce CI noise until it gets investigated. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: nodejs#41207 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Refs: #41206
This test seems to be failing regularly on
windows with a timeout. Mark it slow to reduce
CI noise until it gets investigated.
Signed-off-by: Michael Dawson mdawson@devrus.com