| 7 | namespace py = pybind11; |
| 8 | |
| 9 | int main(int argc, char* argv[]) { |
| 10 | try { |
| 11 | const py::scoped_interpreter guard{}; |
| 12 | return Catch::Session().run(argc, argv); |
| 13 | } catch (...) { |
| 14 | return 1; |
| 15 | } |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected