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
This commit is contained in:
Sharlatan Hellseher 2024-12-06 19:51:20 +00:00
parent 936c9013e7
commit 68dafa0887
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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.") workloads. This kind of profiling is also known as wall-clock profiling.")
(license license:expat))) (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 (define-public go-github-com-frankban-quicktest
(package (package
(name "go-github-com-frankban-quicktest") (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) (build-system go-build-system)
(arguments (arguments
(list (list
#:test-flags
#~(list "-skip" (string-join
(list "TestReportOutput"
"TestIndirectReportOutput"
"TestMultilineReportOutput"
"TestCmpReportOutput"
"TestTopLevelAssertReportOutput")
"|"))
#:import-path "github.com/frankban/quicktest")) #:import-path "github.com/frankban/quicktest"))
(propagated-inputs (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") (home-page "https://github.com/frankban/quicktest")
(synopsis "Quick helpers for testing Go applications") (synopsis "Quick helpers for testing Go applications")
(description (description