guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

66/88: gnu: go-github-com-frankban-quicktest: Disable failing tests.


From: guix-commits
Subject: 66/88: gnu: go-github-com-frankban-quicktest: Disable failing tests.
Date: Fri, 6 Dec 2024 16:17:30 -0500 (EST)

sharlatan pushed a commit to branch go-team
in repository guix.

commit 33e7b7f7cea8f1dc5b6fa71f82af8ddc1f25c120
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
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 55d43d5c86..91e04575d2 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]