guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: python2-futures: Disable tests.


From: guix-commits
Subject: 01/03: gnu: python2-futures: Disable tests.
Date: Sat, 24 Nov 2018 12:43:37 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 799d4bac62038cf253aacdcfa93fe8f5755fc60f
Author: Marius Bakke <address@hidden>
Date:   Sat Nov 24 18:36:45 2018 +0100

    gnu: python2-futures: Disable tests.
    
    * gnu/packages/python.scm (python2-futures)[arguments]: Set #:test? #f.
---
 gnu/packages/python.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 61fcf28..a9e5306 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -261,6 +261,10 @@
                                             ((or "." "..") #f)
                                             (file
                                              (not
+                                              ;; FIXME: Add the 'support' 
directory
+                                              ;; in the next rebuild cycle, 
since it
+                                              ;; moved in 2.7.14.  See also
+                                              ;; python2-futures below.
                                               (string-prefix? "test_support."
                                                               file))))))
                        (call-with-output-file "__init__.py" (const #t))
@@ -7766,7 +7770,11 @@ otherwise matches 3.2’s API.")
          (base32
           "1pw1z4329xvlabdpwqa6b7v2fxf7hl64m4cgr22ckbym8m8m4hh5"))))
     (build-system python-build-system)
-    (arguments `(#:python ,python-2))
+    (arguments `(#:python ,python-2
+                 ;; FIXME: Python 2.7.14 moved the test.support library,
+                 ;; but our package has not yet been adjusted.  Enable
+                 ;; tests when the python2 package has been fixed.
+                 #:tests? #f))
     (home-page "https://github.com/agronholm/pythonfutures";)
     (synopsis
      "Backport of the concurrent.futures package from Python 3.2")



reply via email to

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