#include "test_suite.h" #include int main() { auto &config = Config::get(); config.project.cmake.command = "cmake"; auto suite_name = "CMake_tests"; suite test_suite(suite_name); auto module = py::module::import("cmake_test"); try { module.attr("run")((test_suite.test_file_path / suite_name / "cmake_project").string()); test_suite.has_assertion = true; } catch(const py::error_already_set &error){ std::cout << error.what(); } }