gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet-scheme] 44/49: guix: Skip tests in guile package.


From: gnunet
Subject: [gnunet-scheme] 44/49: guix: Skip tests in guile package.
Date: Sat, 25 Dec 2021 23:00:21 +0100

This is an automated email from the git hooks/post-receive script.

maxime-devos pushed a commit to branch master
in repository gnunet-scheme.

commit 8dbb40accf5ff92be2d5dc48ddb0af7690785151
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Sat Dec 25 20:43:49 2021 +0000

    guix: Skip tests in guile package.
    
    There are some unresolved test failures, testing takes a lot of time,
    there are test failures and they aren't useful to scheme-gnunet
    hackers, so skip them.
    
    * guix.scm (guile-3.0/fixed)[arguments]<#:tests>: Set to #false.
---
 guix.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/guix.scm b/guix.scm
index a082b9c..5eefab8 100644
--- a/guix.scm
+++ b/guix.scm
@@ -27,6 +27,7 @@
             (gnu packages xorg)
             (gnu packages text-editors)
             (guix packages)
+            (guix utils)
             (guix gexp)
             (guix git)
             (guix git-download)
@@ -41,7 +42,15 @@
      (origin
        (inherit (package-source guile-3.0-latest))
        (patches (list (local-file 
"0001-Fix-non-revealed-port-is-closed-ports.test.patch")
-                     (local-file "0001-ice-9-read-Parse-properly.patch")))))))
+                     (local-file "0001-ice-9-read-Parse-properly.patch")))))
+    (arguments
+     (substitute-keyword-arguments
+      (package-arguments guile-3.0-latest)
+      ;; Tests can take long to run.
+      ;; Also, it fails with
+      ;;   ERROR: web-server.test: GET / - arguments: ((system-error "connect" 
"~A" ("Connection refused") (111)))
+      ;; and likewise for /latin1, /user-agent and /does-not-exist.
+      ((#:tests? _) #f)))))
 
 ;; This has some I/O patches (wait-until-port-readable-operation),
 ;; see <https://github.com/wingo/fibers/pull/50>.

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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