-
Notifications
You must be signed in to change notification settings - Fork 30k
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_runner: finish build phase before running tests #54423
Conversation
Review requested:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #54423 +/- ##
=======================================
Coverage 87.32% 87.32%
=======================================
Files 648 648
Lines 182321 182345 +24
Branches 34973 34974 +1
=======================================
+ Hits 159210 159234 +24
- Misses 16376 16379 +3
+ Partials 6735 6732 -3
|
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.
lgtm
This commit updates the test runner to wait for suites to finish building before starting any tests. This is necessary when test filtering is enabled, as suites may transition from filtered to not filtered depending on what is inside of them. Fixes: nodejs#54084 Fixes: nodejs#54154
aff03a5
to
4cb8fba
Compare
Rebased after #54387 landed. I'm not quite sure why the GitHub UI was saying there was a conflict, but it didn't exist locally 🤷 |
Commit Queue failed- Loading data for nodejs/node/pull/54423 ✔ Done loading data for nodejs/node/pull/54423 ----------------------------------- PR info ------------------------------------ Title test_runner: finish build phase before running tests (#54423) Author Colin Ihrig <[email protected]> (@cjihrig) Branch cjihrig:filter-suite-order -> nodejs:main Labels author ready, test_runner Commits 1 - test_runner: finish build phase before running tests Committers 1 - cjihrig <[email protected]> PR-URL: https://github.com/nodejs/node/pull/54423 Fixes: https://github.com/nodejs/node/issues/54084 Fixes: https://github.com/nodejs/node/issues/54154 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Matteo Collina <[email protected]> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/54423 Fixes: https://github.com/nodejs/node/issues/54084 Fixes: https://github.com/nodejs/node/issues/54154 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Matteo Collina <[email protected]> -------------------------------------------------------------------------------- ⚠ Commits were pushed since the last approving review: ⚠ - test_runner: finish build phase before running tests ℹ This PR was created on Sat, 17 Aug 2024 16:04:38 GMT ✔ Approvals: 2 ✔ - Benjamin Gruenbaum (@benjamingr) (TSC): https://github.com/nodejs/node/pull/54423#pullrequestreview-2244147856 ✔ - Matteo Collina (@mcollina) (TSC): https://github.com/nodejs/node/pull/54423#pullrequestreview-2244290735 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2024-08-18T20:14:06Z: https://ci.nodejs.org/job/node-test-pull-request/61207/ - Querying data for job/node-test-pull-request/61207/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/10456894484 |
This needs a re-approval after the rebase to appease the commit queue. |
Landed in ef4bdbf |
This commit updates the test runner to wait for suites to finish building before starting any tests. This is necessary when test filtering is enabled, as suites may transition from filtered to not filtered depending on what is inside of them. Fixes: #54084 Fixes: #54154 PR-URL: #54423 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]>
Please ignore the first commit. That is #54387, which is currently blocked from landing because the macOS machine in the CI has a full disk.
This commit updates the test runner to wait for suites to finish
building before starting any tests. This is necessary when test
filtering is enabled, as suites may transition from filtered to
not filtered depending on what is inside of them.
Fixes: #54084
Fixes: #54154