Closed jeromekelleher closed 11 months ago
There's a few places we're using # pragma: no cover where we could/should be testing.
# pragma: no cover
Review these and replace with crafted test cases where approporate.
# pragma: no cover should only be used in cases where it's not possible to test, like in a numba jitted function.
Issue resolved in https://github.com/tskit-dev/tstrait/pull/119
There's a few places we're using
# pragma: no cover
where we could/should be testing.Review these and replace with crafted test cases where approporate.
# pragma: no cover
should only be used in cases where it's not possible to test, like in a numba jitted function.