Closed Philippe-Cholet closed 4 months ago
Attention: Patch coverage is 91.30435%
with 2 lines
in your changes missing coverage. Please review.
Project coverage is 94.51%. Comparing base (
6814180
) to head (9238e2a
). Report is 108 commits behind head on master.
Files | Patch % | Lines |
---|---|---|
src/lib.rs | 87.50% | 2 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
963 lead me to know about
#![doc(test(attr(...)))]
.Our doctests have some warnings that are ignored by default. Here, I fix some, sometimes silently (comment out), and globally ignore
deprecated
andunstable_name_collisions
. Maybe I shouldallow(unused_variables)
instead of many# let _ = ...;
?