tests/test-check-pyflakes.t
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Thu, 02 Mar 2017 18:14:33 +0100
changeset 2033 16df79bbbe87
parent 2027 de914b833105
child 2037 23b9c71caa70
permissions -rw-r--r--
flake8: enable on evolve too Now that all error are fixed we can run it on all file to prevent regression.

#require test-repo pyflakes

Copied from Mercurial core (60ee2593a270)

  $ cd "`dirname "$TESTDIR"`"

run pyflakes on all tracked files ending in .py or without a file ending
(skipping binary file random-seed)

  $ hg locate 'set:**.py or grep("^!#.*python")' 2>/dev/null \
  > | xargs pyflakes 2>/dev/null  

run flake8 if it exists; if it doesn't, then just skip

  $ type flake8 >/dev/null 2>/dev/null && hg files -0 'glob:hgext3rd/**.py' | xargs -0 flake8 || true