Numba-jitted methods are not captured by codecov

Codecov seems to miss those methods that are decorated with @numba.jit. Here’s the codecov report that demonstrates the issue:
Edit: This report is regarding the package porespy, which can be found here.

Ok, basically, it seems that codecov tracer can’t enter jitted functions. To resolve this issue, you just need to run your tests with the environment variable NUMBA_DISABLE_JIT=1.

1 Like