| 51 | virtual ~PythonCreator(); |
| 52 | |
| 53 | void configure(const std::vector<std::string> &pythonFiles) { |
| 54 | std::vector<std::string> pathOrFiles; |
| 55 | for (const auto &path : pythonFiles) { |
| 56 | const auto vec = utils::StringUtils::split(path, ","); |
| 57 | pathOrFiles.insert(pathOrFiles.end(), vec.begin(), vec.end()); |
| 58 | } |
| 59 | |
| 60 | for (const auto &path : pathOrFiles) { |
| 61 | utils::file::FileUtils::addFilesMatchingExtension(logger_, path, ".py", classpaths_); |
| 62 | } |
| 63 | |
| 64 | } |
| 65 | |
| 66 | virtual void configure(const std::shared_ptr<Configure> &configuration) override { |
| 67 |
nothing calls this directly
no test coverage detected