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

commit 1b7e5e728872c60aef60f2b17bb001f10a9431be
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Thu Jun 12 11:19:35 2025 +0100

    gnu: go-github-com-go-fed-httpsig: Skip one more test.
    
    * gnu/packages/golang-web.scm (go-github-com-go-fed-httpsig) [arguments]
    <test-flags>: Skip one more failing test.
    
    Change-Id: I99d1b7e29a8157ef03881c661c60149c7497ebf3
---
 gnu/packages/golang-web.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index ee1cb6a04a..53d59a8f42 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3072,8 +3072,14 @@ decompose request handling into many smaller layers.")
     (arguments
      (list
       #:import-path "github.com/go-fed/httpsig"
-      ;; algorithms_test.go:153: "sha1": got true, want false
-      #:test-flags #~(list "-skip" "TestIsAvailable")))
+      #:test-flags
+      #~(list "-skip" (string-join
+                       ;; algorithms_test.go:153: "sha1": got true, want false
+                       (list "TestIsAvailable"
+                             ;; "rsa_SHA3_224": expected error, got:
+                             ;; %!s(<nil>)
+                             "TestSignerSigns")
+                       "|"))))
     (propagated-inputs
      (list go-golang-org-x-crypto))
     (home-page "https://github.com/go-fed/httpsig";)

Reply via email to