guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit e07322130adc7797ce09fbd2158651a4b97f2450
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Mar 1 16:35:13 2026 +0000
gnu: go-github-com-onsi-gomega: Run vet tests.
* gnu/packages/golang-check.scm (go-github-com-onsi-gomega):
[arguments] <test-flags>: Drop.
[phases]{remove-failing-test-files}: Remove phase.
Change-Id: I69de432e162e7c5da8629764b10f7e1759f3fe66
---
gnu/packages/golang-check.scm | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 05ab8592cb..de9158b27b 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -2499,14 +2499,7 @@ Gomega matcher library.")
(build-system go-build-system)
(arguments
(list
- #:import-path "github.com/onsi/gomega"
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'remove-failing-test-files
- (lambda* (#:key import-path #:allow-other-keys)
- (with-directory-excursion (string-append "src/" import-path)
- (delete-file "gexec/build_test.go")))))
- #:test-flags #~(list "-vet=off")))
+ #:import-path "github.com/onsi/gomega"))
(native-inputs
(list go-github-com-onsi-ginkgo-v2-bootstrap))
(propagated-inputs