guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 67b6050184b5de12ca8c36609dadaf90764e9c64
Author: Sharlatan Hellseher <[email protected]>
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 897c2ca9b5..43086aaa92 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3282,8 +3282,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")