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

commit d5fbe8188ab5f463fd3f4bcd15b7dedea3a52385
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 23:05:49 2026 +0000

    gnu: go-github-com-stretchr-testify: Update to 1.11.1.
    
    * gnu/packages/golang-check.scm (go-github-com-stretchr-testify): Update to 
1.11.1.
    [arguments] <go>: Use default (go-1.24).
    <test-flags>: Do not vet tests.
    
    Change-Id: I195ff50589ae8715c12b0eb9271805cdb6487956
---
 gnu/packages/golang-check.scm | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 7f3973f3dc..9513bd79d8 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -2548,26 +2548,24 @@ test coverage and has a web user interface that will 
refresh automatically.")
 (define-public go-github-com-stretchr-testify
   (package
     (name "go-github-com-stretchr-testify")
-    (version "1.10.0")
+    (version "1.11.1")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/stretchr/testify";)
-             (commit (string-append "v" version))))
+              (url "https://github.com/stretchr/testify";)
+              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0g1bdpqih38a7dl1malahz5x4ag01adk61gx47jg2534cqzvid05"))))
+        (base32 "01z104142yrnih9vq3zrhypalh1d3kmyddyapqxgzggvhsw5b6pl"))))
     (build-system go-build-system)
     (arguments
      (list
-      ;; See the list of supported Golang versions in
-      ;; <testify/.github/workflows/main.yml>.
-      #:go go-1.23
       ;; XXX: Tests are shaky on non x86_64 architectures, check if some may
       ;; be enabled.
       #:tests? (target-x86-64?)
-      #:import-path "github.com/stretchr/testify"))
+      #:import-path "github.com/stretchr/testify"
+      #:test-flags #~(list "-vet=off")))
     (propagated-inputs
      (list go-github-com-davecgh-go-spew
            go-github-com-pmezard-go-difflib

Reply via email to