diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:38:44 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:38:44 +0100 |
commit | 6c826d3278d04c02150b3b9c3ec0515c595b641a (patch) | |
tree | da1eb37883a95266d2589fa69eadc539ee693b57 /gnu/packages/python-xyz.scm | |
parent | f987ac307b05056a43a32c8b607c19baccbecbb9 (diff) | |
download | guix-6c826d3278d04c02150b3b9c3ec0515c595b641a.tar guix-6c826d3278d04c02150b3b9c3ec0515c595b641a.tar.gz |
gnu: python2-cliapp: Use INVOKE.
* gnu/packages/python-xyz.scm (python2-cliapp)[arguments]: Unconditionally
return #T from "check" phase.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 37a26b8211..0f02163cab 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11222,7 +11222,7 @@ protocols.") ;; Disable python3 tests (substitute* "check" (("python3") "# python3")) - (zero? (system* "./check"))))))) + (invoke "./check")))))) (native-inputs `(("python2-coverage-test-runner" ,python2-coverage-test-runner) ("python2-pep8" ,python2-pep8))) |