-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Remove result indicator from test summary #9929
Conversation
@nohwnd can you merge conflicts? |
@baronfel done (not a super developer, I just did not push). |
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 - @AR-May Can you take a look as well?
@AR-May merged conflicts, please review. |
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
@MichalPavlik all green, please approve and merge or let me know what to change. |
Fixes dotnet/sdk#39665
Context
Reporting the result in the test summary creates inconsistencies. When the build finished with warnings the tests would still report "succeded", unless we duplicate a lot of logic.
Changes Made
Removed the explicit result, and instead I just colorize the most important test result count, so failed tests are highlighted when there are any.
Moved the test summary above the final build result.
original:
new (after merge with newest main):
Testing
Notes