szaszm commented on code in PR #1916: URL: https://github.com/apache/nifi-minifi-cpp/pull/1916#discussion_r1925695509
########## extensions/python/tests/PythonManifestTests.cpp: ########## @@ -157,7 +157,11 @@ class MyPyProc5(FlowFileTransform): )"; controller.configuration_->set(minifi::Configuration::nifi_python_processor_dir, python_dir.string()); +#ifdef WIN32 controller.configuration_->set(minifi::Configuration::nifi_extension_path, "*minifi-python-script*"); +#else + controller.configuration_->set(minifi::Configuration::nifi_extension_path, "*minifi-python-lib-loader*, *minifi-python-script*"); Review Comment: this is only relevant on Linux, and probably shouldn't be included on macos -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
