diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 17:08:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:13:29 +0100 |
commit | 4a4a7d9ad6846355eb87025e3e74ae87b0c36017 (patch) | |
tree | 3190bcfa3185061454de0250d76965c09f0bd67a /gnu/packages/python-xyz.scm | |
parent | 5d7a6f1ceaa882376b739d5149475565b07e0b94 (diff) |
gnu: python2-backports-shutil-get-terminal-size: Use INVOKE.
* gnu/packages/python-xyz.scm (python2-backports-shutil-get-terminal-size)
[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 d63f300fde..7033c95e79 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5326,7 +5326,7 @@ Python 2 and Python 3.") (modify-phases %standard-phases (replace 'check (lambda _ - (zero? (system* "py.test" "-v"))))))) + (invoke "py.test" "-v")))))) (native-inputs `(("python2-pytest" ,python2-pytest))) (home-page "https://github.com/chrippa/backports.shutil_get_terminal_size") |