view tests/test-check-pyflakes.t @ 2011:9c7665e3107b

documentation: some basic update of the documentation So far the documentation was pretty scarce and a lot of important information was missing. The new content is probably not great but it is an improvement.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Wed, 07 Sep 2016 12:45:23 +0200
parents 053190199959
children 143c8e4dc22d
line wrap: on
line source

#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:**.py' | xargs -0 flake8 || true