guix-commits
[Top][All Lists]
Advanced

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

07/131: gnu: python-pytest-xdist: Add missing input, relax pytest requir


From: guix-commits
Subject: 07/131: gnu: python-pytest-xdist: Add missing input, relax pytest requirement.
Date: Fri, 29 Jan 2021 09:21:43 -0500 (EST)

apteryx pushed a commit to branch cu/farewell-to-pythonpath
in repository guix.

commit 9525762fadf38bde303e35b9317e06f80832c17b
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Wed Jan 27 12:45:05 2021 -0500

    gnu: python-pytest-xdist: Add missing input, relax pytest requirement.
    
    * gnu/packages/check.scm: (python-pytest-xdist)
    [arguments]: Relax pytest version requirements.
    [propagated-inputs]: Add python-pytest-forked.
---
 gnu/packages/check.scm | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 41da093..1749531 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1173,20 +1173,25 @@ same arguments.")
            #t))))
     (build-system python-build-system)
     (arguments
-     '(#:tests? #f)) ;FIXME: Some tests are failing.
-       ;; #:phases
-       ;; (modify-phases %standard-phases
-       ;;   (delete 'check)
-       ;;   (add-after 'install 'check
-       ;;     (lambda* (#:key inputs outputs #:allow-other-keys)
-       ;;       (add-installed-pythonpath inputs outputs)
-       ;;       (zero? (system* "py.test" "-v")))))
+     '(#:tests? #f ; Lots of tests fail.
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-setup-py
+           (lambda _
+             ;; Relax pytest requirement.
+             (substitute* "setup.py"
+               (("pytest>=6\\.0\\.0") "pytest"))))
+         (replace 'check
+            (lambda* (#:key tests? #:allow-other-keys)
+              (when tests?
+                (invoke "py.test" "-v")))))))
     (native-inputs
      `(("python-setuptools-scm" ,python-setuptools-scm)))
     (propagated-inputs
      `(("python-execnet" ,python-execnet)
        ("python-pytest" ,python-pytest)
-       ("python-py" ,python-py)))
+       ("python-py" ,python-py)
+       ("python-pytest-forked" ,python-pytest-forked)))
     (home-page
      "https://github.com/pytest-dev/pytest-xdist";)
     (synopsis



reply via email to

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