Closed fwkoch closed 5 years ago
Merging #280 into dev will increase coverage by
0.12%
. The diff coverage is0%
.
@@ Coverage Diff @@
## dev #280 +/- ##
==========================================
+ Coverage 96.42% 96.54% +0.12%
==========================================
Files 17 17
Lines 2375 2372 -3
==========================================
Hits 2290 2290
+ Misses 85 82 -3
Impacted Files | Coverage Δ | |
---|---|---|
properties/basic.py | 97.5% <0%> (+0.42%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 1786b90...0041a61. Read the comment docs.
(cherry picking docs fix above for 3.5/3.6 test fails)
@bsmithyman - re. your commentary on how this is possible - the biggest thing is that ValueError
vs any other error type is totally arbitrary. Like, the example code you had in your commentary could have raised any error type, so why do we only catch ValueError
? So with that reasoning, it becomes either catch everything or catch nothing, and in that case, the latter makes way more sense.
Ha, yes, completely agree @fwkoch.
See #264