Open unkcpz opened 7 hours ago
It was from a thing I learned from Rust. It usually not recommend to use unwrap
in the source code but the unwrap
is extremely suitable and the right thing for tests. I think it kinds of similar for mypy to python. If the tests fail it fail, and the tests go through the "happy path" of the codes. Type checking will sometime too strict to consider beyond the "happy path". I hope it is not too aggressive.
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 77.90%. Comparing base (
ef60b66
) to head (6b65260
). Report is 139 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
🚨 Try these New Features:
Not worth to have strict type check by mypy for tests/* .