sharlatan pushed a commit to branch go-team
in repository guix.
commit 780873e0950ed87c416cfade573192a49fde1561
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Dec 6 19:51:20 2024 +0000
gnu: go-github-com-frankban-quicktest: Disable failing tests.
The project looks like abandoned but still in use by some other packages
in Guix.
* gnu/packages/golang-check.scm (go-github-com-frankban-quicktest)
[arguments]<test-flags>: Disable some failing tests.
Change-Id: Id67c9101b42fd999a03c8ee3964104ed0f8636b8
---
gnu/packages/golang-check.scm | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 6beac22e98..670c9e353d 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -334,6 +334,9 @@ fgprof is designed for analyzing applications with mixed
I/O and CPU
workloads. This kind of profiling is also known as wall-clock profiling.")
(license license:expat)))
+;; XXX: The project looks like abandoned, see
+;; <https://github.com/frankban/quicktest/issues/172>, remove when nothing
+;; depends on it.
(define-public go-github-com-frankban-quicktest
(package
(name "go-github-com-frankban-quicktest")
@@ -350,9 +353,18 @@ workloads. This kind of profiling is also known as
wall-clock profiling.")
(build-system go-build-system)
(arguments
(list
+ #:test-flags
+ #~(list "-skip" (string-join
+ (list "TestReportOutput"
+ "TestIndirectReportOutput"
+ "TestMultilineReportOutput"
+ "TestCmpReportOutput"
+ "TestTopLevelAssertReportOutput")
+ "|"))
#:import-path "github.com/frankban/quicktest"))
(propagated-inputs
- (list go-github-com-google-go-cmp go-github-com-kr-pretty))
+ (list go-github-com-google-go-cmp
+ go-github-com-kr-pretty))
(home-page "https://github.com/frankban/quicktest")
(synopsis "Quick helpers for testing Go applications")
(description