~ruther/guix-local

1ca59d13ca420b2898050c76656538ce8be162fd — Sharlatan Hellseher 1 year, 5 months ago ed7ec79
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
1 files changed, 13 insertions(+), 2 deletions(-)

M gnu/packages/golang-check.scm
M gnu/packages/golang-check.scm => gnu/packages/golang-check.scm +13 -2
@@ 389,9 389,20 @@ tests.")
    (build-system go-build-system)
    (arguments
     (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
     (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")
    (synopsis "Qt: quicker Go tests")
    (description