guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: python-rdflib: Disable tests.


From: Marius Bakke
Subject: 02/02: gnu: python-rdflib: Disable tests.
Date: Wed, 14 Dec 2016 21:27:24 +0000 (UTC)

mbakke pushed a commit to branch python-tests
in repository guix.

commit ee4722411fb71f90deb63e7976207f84ecae7360
Author: Marius Bakke <address@hidden>
Date:   Wed Dec 14 22:24:50 2016 +0100

    gnu: python-rdflib: Disable tests.
    
    * gnu/packages/rdf.scm (python-rdflib)[arguments]: Set #:tests? #f.
    [native-inputs]: Add python-nose.
    (python2-rdflib)[inputs]: Remove field. Use 'package-with-python2'.
---
 gnu/packages/rdf.scm |   22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/rdf.scm b/gnu/packages/rdf.scm
index 1dd23c2..97e6b88 100644
--- a/gnu/packages/rdf.scm
+++ b/gnu/packages/rdf.scm
@@ -315,6 +315,18 @@ ideal (e.g. in LV2 implementations or embedded 
applications).")
           (base32
             "0kvaf332cqbi47rqzlpdx4mbkvw12mkrzkj8n9l19wk713d4py9w"))))
     (build-system python-build-system)
+    (arguments
+     '(;; FIXME: Three test failures. Try uncommenting the below next update.
+       #:tests? #f))
+       ;; #:phases
+       ;; (modify-phases %standard-phases
+       ;;   (replace 'check
+       ;;     (lambda _
+       ;;       ;; Run tests from the build directory so python3 only
+       ;;       ;; sees the installed 2to3 version.
+       ;;       (zero? (system* "nosetests" "--where=./build/src")))))
+    (native-inputs
+     `(("python-nose" ,python-nose)))
     (propagated-inputs
       `(("python-html5lib" ,python-html5lib)
         ("python-isodate" ,python-isodate)
@@ -329,12 +341,4 @@ powerful language for representing information.")
                         "See LICENSE in the distribution."))))
 
 (define-public python2-rdflib
-  (let ((base (package-with-python2 python-rdflib)))
-    (package
-      (inherit base)
-      (inputs
-        (append (package-inputs base)
-                `(("python2-nose" ,python2-nose))))
-      (arguments
-        `(#:python ,python-2
-          #:tests? #f))))) ; 3 tests fail, also outside Guix
+  (package-with-python2 python-rdflib))



reply via email to

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