lordgamez commented on code in PR #2169: URL: https://github.com/apache/nifi-minifi-cpp/pull/2169#discussion_r3194505481
########## extensions/splunk/tests/features/environment.py: ########## @@ -14,11 +14,17 @@ # limitations under the License. import platform +import docker +from containers.splunk_container import SplunkContainer from minifi_behave.core.hooks import common_before_scenario from minifi_behave.core.hooks import common_after_scenario +def before_all(context): + docker.from_env().images.pull(SplunkContainer.IMAGE) + Review Comment: Updated in https://github.com/apache/nifi-minifi-cpp/pull/2169/commits/06f9085d89f6898a9a67286534746e5aee6a867f -- 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]
