From fcaec1c756c03743ea67206d4eedf58165c28088 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 22 Jan 2021 16:46:23 -0500 Subject: 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(-) (limited to 'gnu/packages/xml.scm') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 159fbd5525..239b0e72a2 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 -- cgit v1.2.3