summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-03-28 23:42:54 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-26 16:50:32 +0100
commit5f8a6d5703ed74c6c05df5ee6724e6b60036338c (patch)
tree34a117d56cdba21e7b5ed1cf35b82b02720d4e49
parent47b8b2e49160ef79df4746ae66c4c8461f933427 (diff)
gnu: go-go-opencensus-io: Enable all tests.
* gnu/packages/golang-web.scm (go-go-opencensus-io) [arguments] <go>: Use go-1.22. <test-subdirs>: Run all available tests. [propagated-inputs]: Add go-google-golang-org-grpc. Change-Id: If8d93c3b2911139b36ece7c5e00def160e2be5ab
-rw-r--r--gnu/packages/golang-web.scm17
1 files changed, 2 insertions, 15 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 1950c7f601..2d77cf6bd3 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -9768,6 +9768,7 @@ lists)
(build-system go-build-system)
(arguments
(list
+ #:go go-1.22
#:import-path "go.opencensus.io"
#:test-flags
#~(list "-skip"
@@ -9776,20 +9777,6 @@ lists)
(list "TestAgainstSpecs/Successful_GET_call_to_https.*"
"TestAgainstSpecs/Successfully_POST_call_to_https.*")
"|"))
- #:test-subdirs
- #~(list "exporter/..."
- "internal"
- ;; "internal/testpb/..." ; missing packages
- "metric/..."
- ;; "plugin/ocgrpc/..." ; missing packages
- "plugin/ochttp/..."
- "plugin/runmetrics/..."
- "resource/..."
- "stats/..."
- "tag"
- "trace/..."
- ;; "zpages" ; missing packages
- "zpages/internal/...")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-examples
@@ -9802,7 +9789,7 @@ lists)
go-github-com-google-go-cmp
go-github-com-stretchr-testify
go-golang-org-x-net
- #; go-google-golang-org-grpc)) ; not packaged, long journey
+ go-google-golang-org-grpc))
(home-page "https://opencensus.io/")
(synopsis "Stats collection and distributed tracing framework")
(description