dannym pushed a commit to branch core-updates
in repository guix.
commit 5a1ac6138d31f5e48c273b4f9292292d76d7432a
Author: Danny Milosavljevic <[email protected]>
Date: Mon Nov 26 20:09:14 2018 +0100
gnu: python-tblib: Use invoke.
* gnu/packages/python.scm (python-tblib)[arguments]<#:phases>[check]: Use
invoke.
---
gnu/packages/python.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 578d529..2ee18be 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9047,7 +9047,7 @@ own code, responding to click events and updating clock
every second.")
(setenv "PYTHONPATH"
(string-append (getcwd) "/build/lib:"
(getenv "PYTHONPATH")))
- (zero? (system* "py.test" "-vv" "tests" "README.rst")))))))
+ (invoke "py.test" "-vv" "tests" "README.rst"))))))
(native-inputs
`(("python-pytest" ,python-pytest)
("python-six" ,python-six)))