mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
936c9013e7
commit
68dafa0887
1 changed files with 13 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue