-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: bailout test-vm-timeout-escape-nexttick #24712
Conversation
|
||
[$arch==arm] | ||
# https://github.com/nodejs/node/issues/24120 | ||
known_issues/test-vm-timeout-escape-nexttick: PASS,FLAKY |
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.
Is the entry respected when it includes the directory name like this? (I honestly don't know. We don't use it elsewhere, so regardless, for consistency, perhaps we shouldn't use it here?)
known_issues/test-vm-timeout-escape-nexttick: PASS,FLAKY | |
test-vm-timeout-escape-nexttick: PASS,FLAKY |
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.
@Trott - thanks, fixed.
Collaborators, 👍 here to fast-track. |
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.
nit: Prefer if the commit message was something like test: mark test-vm-timeout-escape-nexttick as flaky
to be more consistent with other similar commits.
This is a known failure so mark it such, so that CI is green / amber while the issue is being progressed.
d8447f2
to
bab6071
Compare
@richardlau - thanks, done. unfortunately the commit header often runs on a thin line between being 50 chars or less and being a meaningful phrase; often the length of the test case name limits every other creativity possible with the words. :) In this case, the standard was not possible as it steps few chars out of the limit; so I coined something to fit the meaning and the length. |
@gireeshpunathil We've relaxed the "must be 50 chars or less" requirement to be more of a "try to make it 50 chars or less" guideline. The commit message linting only warns now, rather than throws an error, if the first line is more than 50 chars.
And yeah, keeping it to 50 chars when you are including a long test name (or even when you're not!) can be quite a challenge sometimes. On a meta issue: One problem we have is that we have too many rules, often with subtle variations, scattered across too many files. So it's really not surprising that nobody (very much including me) can keep all the rules straight. Automation helps. Additionally, I personally hope we can consolidate things and try to get rid of rule variations as much as possible. For example, we should take anything useful out of the onboarding-extras.md doc and put it in some other existing document, then get rid of onboarding-extras.md. Then do the same for probably about 8 other files. :-D |
CI again (only because force-push--it was good the first time): https://ci.nodejs.org/job/node-test-pull-request/19027/ |
Collaborators: Can we fast track this? 👍 here to approve. This test is a real problem for CI reliability as it is failing rather frequently on Pi 1 devices and takes a long time for the Raspberry Pi devices to rerun the test suite. I would love to see this fast-tracked so we could get CI to yellow at least. |
This is a known failure so mark it such, so that CI is green / amber while the issue is being progressed. PR-URL: nodejs#24712 Refs: nodejs#24620 Refs: nodejs#24120 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Landed in 9e33e86. Thanks @gireeshpunathil! |
This is a known failure so mark it such, so that CI is green / amber while the issue is being progressed. PR-URL: nodejs#24712 Refs: nodejs#24620 Refs: nodejs#24120 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
This is a known failure so mark it such, so that
CI is green / amber while the issue is being progressed.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesRef: #24620
Ref: #24120
/cc @Trott