Nemeski@mander.xyz to Python@programming.dev · 2 days agoWhat's type-coverage, and why should I care?pyrefly.orgexternal-linkmessage-square4fedilinkarrow-up111
arrow-up111external-linkWhat's type-coverage, and why should I care?pyrefly.orgNemeski@mander.xyz to Python@programming.dev · 2 days agomessage-square4fedilink
minus-squarelogging_strict@programming.devlinkfedilinkarrow-up1·1 day agostubtest (static vs runtime) rather than pyrefly coverage check (static only) So pyrefly is a bean counter. If using mypyc, e.g. black, doesn’t have stubs, then understandable this could be a valid use case. BUT that is an outlier. Without stubs that removes the usefulness of pyright which catches actual bugs. static vs runtime matters
stubtest (static vs runtime)
rather than
pyrefly coverage check (static only)
So pyrefly is a bean counter. If using mypyc, e.g. black, doesn’t have stubs, then understandable this could be a valid use case.
BUT that is an outlier. Without stubs that removes the usefulness of pyright which catches actual bugs.
static vs runtime matters