guix-commits
[Top][All Lists]
Advanced

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

30/131: gnu: python-xmlschema: Do not set PYTHONPATH.


From: guix-commits
Subject: 30/131: gnu: python-xmlschema: Do not set PYTHONPATH.
Date: Fri, 29 Jan 2021 09:21:50 -0500 (EST)

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

commit 5135b213a7261d35ec176672ff43f2192400592f
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Jan 22 16:46:23 2021 -0500

    gnu: python-xmlschema: Do not set PYTHONPATH.
    
    * gnu/packages/xml.scm (python-xmlschema): Remove trailing #t.
    [phases]{check}: Do not set PYTHONPATH.
---
 gnu/packages/xml.scm | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 159fbd5..239b0e7 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -2465,19 +2465,14 @@ libxml2 and libxslt.")
      '(#:phases
        (modify-phases %standard-phases
          (replace 'check
-           (lambda* (#:key (tests? #t) #:allow-other-keys)
+           (lambda* (#:key tests? #:allow-other-keys)
              (if tests?
-                 (begin
-                   (setenv "PYTHONPATH"
-                           (string-append "./build/lib:"
-                                          (getenv "PYTHONPATH")))
-                   ;; Disable test_export_remote__issue_187, which is known to
-                   ;; fail (see:
-                   ;; https://github.com/sissaschool/xmlschema/issues/206).
-                   (invoke "python" "-m" "unittest" "-v"
-                           "-k" "not test_export_remote__issue_187"))
-                 (format #t "test suite not run~%"))
-             #t)))))
+                 ;; Disable test_export_remote__issue_187, which is known to
+                 ;; fail (see:
+                 ;; https://github.com/sissaschool/xmlschema/issues/206).
+                 (invoke "python" "-m" "unittest" "-v"
+                         "-k" "not test_export_remote__issue_187")
+                 (format #t "test suite not run~%")))))))
     (native-inputs
      `(("python-lxml" ,python-lxml)))   ;for tests
     (propagated-inputs



reply via email to

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