4#include <pybind11/embed.h>
9# pragma warning(disable : 4996)
17#define CATCH_CONFIG_RUNNER
22int main(
int argc,
char *argv[]) {
23 py::scoped_interpreter guard{};
24 auto result = Catch::Session().run(argc, argv);
26 return result < 0xff ? result : 0xff;
int main(int argc, char *argv[])