summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-01 16:09:02 +0000
committerAndreas Enge <andreas@enge.fr>2026-03-18 14:07:29 +0100
commit5b57c450a9e9b693384f97bbcf149c0da436721d (patch)
treee2bdbf91837044de3e44df2f42d6700adb1cfc51
parent096ed6db5227b0db9416bed70c6879beadbdf685 (diff)
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
-rw-r--r--gnu/packages/golang-check.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index df79ec46ffc..05ab8592cb9 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")