I use pybind11 to add a module _cxx to existing python library liba.
The liba._cxx.func doesn't exist until I compile the c++ extension and install the whole library by setup.py.
When I run tests in liba/tests/test__cxx.py, it complains that it can't import liba._cxx
How to solve this?