You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes code coverage reports a reduction in coverage for the AccessPath class even when the PR changes nothing related to that code. Here is an example. I suspect some kind of non-determinism on our code or tests; we should try to track this down.
The text was updated successfully, but these errors were encountered:
…ts (#838)
Fixes#828 (hopefully)
There is some non-determinism in whether
`com.uber.nullaway.dataflow.AccessPath.IteratorContentsKey#equals` runs
or not during tests (see the code comment). The non-determinism will be
hard for us to fix, so instead, add an annotation that tells JaCoCo to
ignore coverage of this method (which is low risk as it's an `equals()`
method that I don't expect will change).
Sometimes code coverage reports a reduction in coverage for the
AccessPath
class even when the PR changes nothing related to that code. Here is an example. I suspect some kind of non-determinism on our code or tests; we should try to track this down.The text was updated successfully, but these errors were encountered: