guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: python-jedi: Update to 0.13.1 and disable the tests.


From: guix-commits
Subject: 01/02: gnu: python-jedi: Update to 0.13.1 and disable the tests.
Date: Sun, 9 Dec 2018 16:28:11 -0500 (EST)

apteryx pushed a commit to branch master
in repository guix.

commit 584d5556d409e7db70296f751e7b8a123f1d5c01
Author: Maxim Cournoyer <address@hidden>
Date:   Sun Dec 9 15:52:44 2018 -0500

    gnu: python-jedi: Update to 0.13.1 and disable the tests.
    
    Jedi test suite fails when run with Python 3.7.
    
    * gnu/packages/python.scm (python-jedi): Update to 0.13.1
    [tests?] Disable.
    [phases] Add condition check for the tests? argument to run the tests.
---
 gnu/packages/python.scm | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9472a44..23b980e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9841,20 +9841,25 @@ characters, mouse support, and auto suggestions.")
 (define-public python-jedi
   (package
     (name "python-jedi")
-    (version "0.12.1")
+    (version "0.13.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "jedi" version))
        (sha256
         (base32
-         "1h8ypnjisn57kiv1zqrkj1im6sbfnhxllqaa8znh39qkd47ys2dl"))))
+         "0j11q42g5vjkyhhjpyy8nb0gdxs78m3rpjai7p1hvgpyl9rkyjdp"))))
     (build-system python-build-system)
     (arguments
-     `(#:phases
+     `( ;; Many tests are failing with Python 3.7.x as of version 0.13.1 (see:
+        ;; https://github.com/davidhalter/jedi/issues/1263)
+       #:tests? #f
+       #:phases
        (modify-phases %standard-phases
-         (replace 'check (lambda _
-                           (invoke "py.test" "-vv"))))))
+         (replace 'check
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (invoke "py.test" "-vv")))))))
     (native-inputs
      `(("python-pytest" ,python-pytest)
        ("python-docopt" ,python-docopt)))



reply via email to

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