Mercurial > evolve
changeset 5337:f354de498737
tests: actually use the correct python version for flake8/pyflakes
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sun, 24 May 2020 13:07:44 +0800 |
parents | 2895b026ba88 |
children | 6a50faea786d |
files | tests/test-check-flake8.t tests/test-check-pyflakes.t |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-check-flake8.t Sun May 24 13:02:48 2020 +0800 +++ b/tests/test-check-flake8.t Sun May 24 13:07:44 2020 +0800 @@ -17,4 +17,4 @@ $ hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' \ > -X hgext3rd/evolve/thirdparty \ > 2>/dev/null \ - > | xargs -0 flake8 + > | xargs -0 "$PYTHON" -m flake8
--- a/tests/test-check-pyflakes.t Sun May 24 13:02:48 2020 +0800 +++ b/tests/test-check-pyflakes.t Sun May 24 13:07:44 2020 +0800 @@ -10,4 +10,4 @@ $ hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' \ > -X hgext3rd/evolve/thirdparty \ > 2>/dev/null \ - > | xargs -0 pyflakes 2>/dev/null + > | xargs -0 "$PYTHON" -m pyflakes 2>/dev/null