rekado pushed a commit to branch master
in repository guix.
commit 2d7db192260f59b996d16e239bb9211375ec31c3
Author: Ricardo Wurmus <[email protected]>
Date: Wed Jan 23 17:15:07 2019 +0100
gnu: python-cram: Use INVOKE.
* gnu/packages/python-xyz.scm (python-cram)[arguments]: Unconditionally
return
#T from "check" phase.
---
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 2a3b5b5..bf987b7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5810,7 +5810,7 @@ pseudo terminal (pty), and interact with both the process
and its pty.")
(add-installed-pythonpath inputs outputs)
(setenv "PATH" (string-append (getenv "PATH") ":"
(assoc-ref outputs "out") "/bin"))
- (zero? (system* "make" "test")))))))
+ (invoke "make" "test"))))))
(build-system python-build-system)
(native-inputs
`(("python-coverage" ,python-coverage)