From 5b57c450a9e9b693384f97bbcf149c0da436721d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 1 Mar 2026 16:09:02 +0000 Subject: [PATCH] gnu: go-github-com-warpfork-go-wish: Build with default go. * gnu/packages/golang-check.scm (go-github-com-warpfork-go-wish): [arguments] : Use default (1.24) : Run tests over whole library. : 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")