tests/test-check-pyflakes.t
author Mads Kiilerich <madski@unity3d.com>
Fri, 15 Aug 2014 04:37:45 +0200
changeset 22198 77142de48ae4
parent 22053 4354b1e35f53
child 27285 aef5b606d3ee
permissions -rw-r--r--
cleanup: make sure we always access members of imported modules This will make sure we get import errors, even if demandimport is enabled. This will also mute some pyflakes 'imported but unused' warnings.

#require test-repo pyflakes

  $ 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 | "$TESTDIR/filterpyflakes.py"
  tests/filterpyflakes.py:58: undefined name 'undefinedname'