Closed andyleiserson closed 3 weeks ago
Attention: Patch coverage is 95.45455%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 93.54%. Comparing base (
95dbe6a
) to head (04ce112
). Report is 17 commits behind head on main.
Files with missing lines | Patch % | Lines |
---|---|---|
ipa-core/src/telemetry/stats.rs | 95.23% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
std::io::stdout()
is not captured in test runs -- see https://github.com/rust-lang/rust/issues/90785.The
Display
implementation forcomfy_table::Table
assembles everything into a string anyways (actually worse -- it assembles into aVec<String>
and then callsjoin
). So, even if we were to have other places where we want thestd::io::Write
interface, there is unlikely to be a performance benefit of the previous implementation.