diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 17:13:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:13:29 +0100 |
commit | 4f0a0894794c18f5f20cdbe43d853394be832328 (patch) | |
tree | 8d287a7dcfaf5720c54892d20ded1ee1d198935a /gnu | |
parent | 4a4a7d9ad6846355eb87025e3e74ae87b0c36017 (diff) |
gnu: python-flake8-polyfill: Use INVOKE.
* gnu/packages/python-xyz.scm (python-flake8-polyfill)[arguments]:
Unconditionally return #T form "check" phase.
Diffstat (limited to 'gnu')
-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 7033c95e79..094fff4d20 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5670,7 +5670,7 @@ PEP8_PLUGIN('break_before_binary_operator'),")) (setenv "PYTHONPATH" (string-append (getcwd) "/build/lib:" (getenv "PYTHONPATH"))) - (zero? (system* "py.test" "-v"))))))) + (invoke "py.test" "-v")))))) (native-inputs `(("python-flake8" ,python-flake8) ("python-mock" ,python-mock) |