guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 46fb6733d211394e2d592e0d302e239b45b8d713
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Mar 1 16:09:04 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 | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index a04cf68edb..05ab8592cb 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -3120,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")