-
Good morning everyone, I have a python module written with 100%python parts and a huge chunk actually written in C++ and bound using nanobind. Issue: PyCov is only able to capture/compute the coverage of the code written 100% in Python. I haven't found anything meaningful here or in the pybind11 discussions about hybrid-coverage like this, so I wanted to ask if anyone had attempted it before and if anyone were successful ? Thanks guys ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I haven't used code coverage tools myself. But wouldn't any standard tool for C++ code coverage work to cover the bound parts? (After all, it's just an ordinary C++ lib.) I don't think there is a tool for dealing with both languages simultaneously. |
Beta Was this translation helpful? Give feedback.
I haven't used code coverage tools myself. But wouldn't any standard tool for C++ code coverage work to cover the bound parts? (After all, it's just an ordinary C++ lib.)
I don't think there is a tool for dealing with both languages simultaneously.