1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2026-03-01 16:09:02 +00:00
committed by Andreas Enge
parent 096ed6db52
commit 5b57c450a9

View File

@@ -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")