guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 80b2ee01ca38912efc0c3d1885ceec2fb4cf0a8c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 24 11:39:00 2026 +0100

    gnu: go-github-com-opencontainers-runtime-tools: Limit test subdirs.
    
    * gnu/packages/golang-xyz.scm (go-github-com-opencontainers-runtime-tools):
    [arguments] <#:test-subdirs>: Exclude "cmd/runtimetest" which depends on
    older version of github.com/opencontainers/selinux module and fails to
    build.
---
 gnu/packages/golang-xyz.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3b66b846e1..fc45c218a9 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24575,7 +24575,9 @@ specification-runtime-spec.")
       #:test-flags
       #~(list "-vet=off"
               ;; Network is required.
-              "-skip" "TestGenerateValid|TestJSONSchema")))
+              "-skip" "TestGenerateValid|TestJSONSchema")
+    #:test-subdirs
+    #~(list "filepath" "generate" "validate")))
     (native-inputs
      (list go-github-com-mndrix-tap-go
            go-github-com-stretchr-testify

Reply via email to