This is an automated email from the ASF dual-hosted git repository.

fgerlits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/main by this push:
     new 5822e38d9 MINIFICPP-2835 Fix skipping Splunk tests on ARM64 (#2190)
5822e38d9 is described below

commit 5822e38d99622838b7a7a40901746ca729005699
Author: Gabor Gyimesi <[email protected]>
AuthorDate: Fri May 29 17:27:21 2026 +0200

    MINIFICPP-2835 Fix skipping Splunk tests on ARM64 (#2190)
    
    There is no splunk/splunk docker image for ARM, so we need to skip the 
feature on ARM, and the image pull command, too.
---
 extensions/splunk/tests/features/environment.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/extensions/splunk/tests/features/environment.py 
b/extensions/splunk/tests/features/environment.py
index 782a88340..4598a1f0e 100644
--- a/extensions/splunk/tests/features/environment.py
+++ b/extensions/splunk/tests/features/environment.py
@@ -26,6 +26,7 @@ def before_feature(context, feature):
         is_x86 = platform.machine() in ("i386", "AMD64", "x86_64")
         if not is_x86:
             feature.skip("This feature is only x86/x64 compatible")
+            return
 
     docker.from_env().images.pull(SplunkContainer.IMAGE)
 

Reply via email to