guix-patches
[Top][All Lists]
Advanced

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

[bug#57462] [PATCH 12/15] gnu: python-jaraco-context: Don't ask to run t


From: Maxime Devos
Subject: [bug#57462] [PATCH 12/15] gnu: python-jaraco-context: Don't ask to run tests when cross-compiling.
Date: Sun, 28 Aug 2022 16:47:45 +0200

* gnu/packages/python-xyz.scm
(python-jaraco-context)[arguments]{#:tests?}: When cross-compiling, set to 
#false.
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 89d9fba9df..2c9af9d1c0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8181,7 +8181,7 @@ (define-public python-jaraco-context
      (substitute-keyword-arguments
          (package-arguments python-jaraco-context-bootstrap)
        ((#:tests? _ #f)
-        #t)
+        (not (%current-target-system)))
        ((#:phases phases #~%standard-phases)
         #~(modify-phases #$phases
             (replace 'check
-- 
2.37.1






reply via email to

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