-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Print Passed and Failed methods in detailed test summary #19099
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
Print Passed and Failed methods in detailed test summary #19099
Conversation
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685
jin
left a 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.
src/test/java/com/google/devtools/build/lib/runtime/TestSummaryTest.java
Show resolved
Hide resolved
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685
dfda50c to
3dc1e81
Compare
Added |
|
According to Bazel PR import instructions, I'll let the gTech team handle the PR import. |
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685
|
Congrats on your first PR to Bazel, Nelson! |
Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix bazelbuild#18685 Closes bazelbuild#19099. RELNOTES: The `--test_summary=detailed` option now also prints passed test cases. PiperOrigin-RevId: 553737487 Change-Id: I332b70d916394de7caed7a07667b46087724a6c1
) Cherry-pick of c75fda9 Previously, Bazel only printed Failed methods in the detailed test summary when using the `--test_summary=detailed` option. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results. Fix #18685 Closes #19099. RELNOTES: The `--test_summary=detailed` option now also prints passed test cases. PiperOrigin-RevId: 553737487 Change-Id: I332b70d916394de7caed7a07667b46087724a6c1 Co-authored-by: NelsonLi0701 <[email protected]>
Previously, Bazel only printed Failed methods in the detailed test summary when using the
--test_summary=detailedoption. With this change, both Passed and Failed methods are now printed, providing a more comprehensive view of the test results.Fix #18685
RELNOTES: The
--test_summary=detailedoption now also prints passed test cases.