1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: go-github-com-prometheus-client-golang: Enable tests.

* gnu/packages/golang.scm (go-github-com-prometheus-client-golang):
Enable tests.
[arguments]: <#:phases>: Add 'remove-examples-and-tutorials and use
custom 'check phase.

Change-Id: I70de72754188b558b730b92d7561d88690b02f7c
This commit is contained in:
Sharlatan Hellseher 2024-07-25 07:41:56 +01:00
parent 818a854b3b
commit 10b868c0a7
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7390,12 +7390,24 @@ system, kernel, and process metrics from the @file{/proc} pseudo file system.")
"0mx5q221pbkx081ycf1lp8sxz513220ya8qczkkvab943cwlcarv"))))
(build-system go-build-system)
(arguments
'(#:tests? #f
#:import-path "github.com/prometheus/client_golang"
#:phases
(modify-phases %standard-phases
;; Source-only package
(delete 'build))))
(list
#:import-path "github.com/prometheus/client_golang"
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-examples-and-tutorials
(lambda* (#:key import-path #:allow-other-keys)
(with-directory-excursion (string-append "src/" import-path)
(for-each delete-file-recursively
(list "api/prometheus/v1/example_test.go"
"examples"
"tutorial")))))
;; XXX: Workaround for go-build-system's lack of Go modules support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(propagated-inputs
(list go-github-com-beorn7-perks
go-github-com-cespare-xxhash-v2