gnu: go-github-com-operatorfoundation-monolith-go: Enable tests.

* gnu/packages/golang.scm (go-github-com-operatorfoundation-monolith-go)
[arguments] <skip-build?>: No go files in project's root.
<unpack-path>: Remove it.
<import-path>: Adjust accordingly to expected go.mod path.
<tests?>: Enable them.
<test-flags>: Skip 3 failing tests.

Change-Id: I5d22cccd6670abd48329c74ad34e35694d38e754
This commit is contained in:
Sharlatan Hellseher 2025-02-21 23:02:26 +00:00
parent d307c92de1
commit 8f9ab6a652
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1224,9 +1224,15 @@ networks where it would otherwise be blocked or heavily throttled.")
(base32 "0zzamnrakjvz9frxscyhrvyz2ikqq2klmynn218jk5dar6mc6xyf")))) (base32 "0zzamnrakjvz9frxscyhrvyz2ikqq2klmynn218jk5dar6mc6xyf"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
`(#:tests? #f ; ERROR: Generated bytes do not match correct answer. (list
#:unpack-path "github.com/OperatorFoundation/monolith-go" #:skip-build? #t
#:import-path "github.com/OperatorFoundation/monolith-go/monolith")) #:import-path "github.com/OperatorFoundation/monolith-go"
#:test-flags
#~(list "-skip" (string-join
(list "TestEnumeratedItems"
"TestOptional2"
"TestVariableStringsPart")
"|"))))
(propagated-inputs (propagated-inputs
(list go-github-com-deckarep-golang-set)) (list go-github-com-deckarep-golang-set))
(home-page "https://github.com/OperatorFoundation/monolith-go") (home-page "https://github.com/OperatorFoundation/monolith-go")