From 995633a59745829acfffbf888c63f00e180e17e5 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 29 Dec 2024 20:23:41 +0000 Subject: [PATCH] gnu: go-github-com-docker-go-connections: Fix bulid. * gnu/packages/golang.scm (go-github-com-docker-go-connections) [arguments] : Skip 2 tests. Change-Id: I0c7df7fefae4c19f5c39367f66982ce4a58dd843 --- gnu/packages/golang.scm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 508555986d..1e97d06af7 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2873,7 +2873,16 @@ to interact with distribution components.") (base32 "0svfa9g4xvbn87l5kiww1jkijmci9g5821wjp81xz1rfp13cqrk8")))) (build-system go-build-system) (arguments - '(#:import-path "github.com/docker/go-connections")) + (list + #:import-path "github.com/docker/go-connections" + #:test-flags + #~(list "-skip" + (string-join + ;; Unable to verify certificate 1: x509: certificate signed by + ;; unknown authority. + (list "TestConfigClientExclusiveRootPools" + "TestConfigServerExclusiveRootPools") + "|")))) (home-page "https://github.com/docker/go-connections") (synopsis "Networking library for Go") (description