-
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
doc: add node-test-commit-custom-suites to docs #21927
Conversation
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!
COLLABORATOR_GUIDE.md
Outdated
@@ -229,6 +229,10 @@ is designed to allow validation of changes to the copy of V8 in the Node.js | |||
tree by running the standard V8 tests. It should be run whenever the | |||
level of V8 within Node.js is updated or new patches are floated on V8. | |||
|
|||
* [`node-test-commit-custom-suites`](https://ci.nodejs.org/job/node-test-commit-custom-suites/) | |||
runs tests that are in the `test/internet` directory. Those are not run by the | |||
other jobs listed here. |
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.
While it is true that the default CI_JS_SUITES
parameters to the job run internet
the job is intended to run any test(suite) with custom arguments (I think you could even simulate the stress job by passing --repeat
to TEST_ARGS
).
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.
I was trying to provide the minimum information to be useful. (I'd like to see pummel
added FWIW.) If you have some alternate or additional text, do feel free to add it!
COLLABORATOR_GUIDE.md
Outdated
@@ -229,6 +229,10 @@ is designed to allow validation of changes to the copy of V8 in the Node.js | |||
tree by running the standard V8 tests. It should be run whenever the | |||
level of V8 within Node.js is updated or new patches are floated on V8. | |||
|
|||
* [`node-test-commit-custom-suites`](https://ci.nodejs.org/job/node-test-commit-custom-suites/) | |||
runs tests that are in the `test/internet` directory. Those are not run by the |
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.
Not exactly... how about:
node-test-commit-custom-suites
runs tests in user-specified directories with parameters provided by the user as well. Currently used on all node-test-commit
jobs to run the default
test suite with the --worker
flag.
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.
@maclover7 Updated. PTAL
Add node-test-commit-custom-suites to the COLLABORATOR_GUIDE. Refs: nodejs#21909 (comment)
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.
💯
Add node-test-commit-custom-suites to the COLLABORATOR_GUIDE. Refs: nodejs#21909 (comment) PR-URL: nodejs#21927 Reviewed-By: Lance Ball <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Landed in f5a2167 |
Add node-test-commit-custom-suites to the COLLABORATOR_GUIDE. Refs: #21909 (comment) PR-URL: #21927 Reviewed-By: Lance Ball <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
Add node-test-commit-custom-suites to the COLLABORATOR_GUIDE.
Refs: #21909 (comment)
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes/ping @lance @maclover7