guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit cb76bb03712b007396f693c6826b8a51cc9b6eec
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Mar 1 16:09:02 2026 +0000

    gnu: go-github-com-warpfork-go-wish: Build with default go.
    
    * gnu/packages/golang-check.scm (go-github-com-warpfork-go-wish):
    [arguments] <go>: Use default (1.24)
    <test-subdirs>: Run tests over whole library.
    <test-flags>: Skip more tests and do not vet during tests.
    
    Change-Id: Id5b0d8987d2a9bca5213ecc7686945b9a3500a68
---
 gnu/packages/golang-check.scm | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index df79ec46ff..05ab8592cb 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -3100,6 +3100,8 @@ Markdown files, using the
 testmark} format, which itself is a subset of Markdown format.")
     (license (list license:asl2.0 license:expat))))
 
+;; XXX: This project was archived by the owner on Sep 7, 2022.  Consider to
+;; remove when nothing depends on it.
 (define-public go-github-com-warpfork-go-wish
   (package
     (name "go-github-com-warpfork-go-wish")
@@ -3118,15 +3120,18 @@ testmark} format, which itself is a subset of Markdown 
format.")
     (build-system go-build-system)
     (arguments
      (list
-      #:go go-1.23
       #:import-path "github.com/warpfork/go-wish"
-      #:test-subdirs #~(list "cmp/..." "wishfix" ".")
       #:test-flags
-      #~(list "-skip" (string-join
-                       (list "TestDiff"
-                             "TestOptions"
+      #~(list "-vet=off"
+              "-skip" (string-join
+                       (list "ExampleGetUnifiedDiffCode"
+                             "TestDiff"
+                             "TestGoTestOutputFun/non-verbose"
+                             "TestGoTestOutputFun/verbose"
                              "TestGoTestOutputTree/non-verbose"
-                             "TestGoTestOutputFun/non-verbose")
+                             "TestGoTestOutputTree/verbose"
+                             "TestOmitFilenames"
+                             "TestOptions")
                        "|"))))
     (home-page "https://github.com/warpfork/go-wish";)
     (synopsis "Test assertions for Golang")

Reply via email to