| 47 | class PythonIntegrationTest : public ::testing::Test { |
| 48 | protected: |
| 49 | void SetUp() override { |
| 50 | const auto module_dir = findPythonModuleDir(); |
| 51 | ASSERT_FALSE(module_dir.empty()) << "Could not locate built lichtfeld module for Python tests"; |
| 52 | prependPythonPath(module_dir); |
| 53 | lfs::python::ensure_initialized(); |
| 54 | } |
| 55 | |
| 56 | std::filesystem::path createTempScript(const std::string& content) { |
| 57 | auto temp_dir = std::filesystem::temp_directory_path(); |
nothing calls this directly
no test coverage detected