gnu: go-github-com-go-quicktest-qt: Skip some failing tests.

* gnu/packages/golang-check.scm (go-github-com-go-quicktest-qt)
[arguments]<test-flags>: Skip 5 tests.

Change-Id: I5485406acec4a7f69d5756fcc1dabbac4f528127
This commit is contained in:
Sharlatan Hellseher 2024-12-13 00:21:16 +00:00
parent 958d3b8115
commit 3b0514343b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -389,9 +389,20 @@ (define-public go-github-com-go-quicktest-qt
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
(list (list
#:import-path "github.com/go-quicktest/qt")) #:import-path "github.com/go-quicktest/qt"
#:test-flags
#~(list "-skip" (string-join
;; Tests failing with assertion error or could not find
;; test files.
(list "TestReportOutput"
"TestIndirectReportOutput"
"TestMultilineReportOutput"
"TestCmpReportOutput"
"TestTopLevelAssertReportOutput")
"|"))))
(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/go-quicktest/qt") (home-page "https://github.com/go-quicktest/qt")
(synopsis "Qt: quicker Go tests") (synopsis "Qt: quicker Go tests")
(description (description