-
Notifications
You must be signed in to change notification settings - Fork 65
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
Represent test timeouts in XML #242
Conversation
f225159
to
cb7206c
Compare
cb7206c
to
e09bda3
Compare
This creates similar output as bazelbuild/bazel@7b091c1
e09bda3
to
15cd495
Compare
private final Object resultsLock = new Object(); | ||
// Commented out to avoid adding a dependency to building the test runner. | ||
// This is really just documentation until someone actually turns on a static analyser. | ||
// If they do, we can decide whether we want to pick up the dependency. |
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.
We won't. Keeping pristine classpaths is a difficult trick to pull off.
private String reason; | ||
private TestExecutionResult result; | ||
TestExecutionResult result; |
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.
Why change the visibility? If this needs to be package private for some reason, can we document why?
This creates similar output as bazelbuild/bazel@7b091c1 Note: This is a duplicate of #242, but with the comments addressed and the merge conflicts resolved. --------- Co-authored-by: Daniel Wagner-Hall <[email protected]>
Merged in #247 |
This creates similar output as bazelbuild/bazel@7b091c1