test-check-pyflakes.t
22 lines
| 984 B
| text/troff
|
Tads3Lexer
/ tests / test-check-pyflakes.t
Matt Mackall
|
r21208 | #if test-repo pyflakes | ||
Thomas Arendsen Hein
|
r16350 | $ cd "`dirname "$TESTDIR"`" | ||
Simon Heimberg
|
r19377 | |||
run pyflakes on all tracked files ending in .py or without a file ending | ||||
(skipping binary file random-seed) | ||||
Matt Mackall
|
r21208 | |||
Matt Mackall
|
r21221 | $ hg locate 'set:**.py or grep("^!#.*python")' 2>/dev/null \ | ||
Simon Heimberg
|
r19377 | > | xargs pyflakes 2>/dev/null | "$TESTDIR/filterpyflakes.py" | ||
contrib/win32/hgwebdir_wsgi.py:*: 'win32traceutil' imported but unused (glob) | ||||
setup.py:*: 'sha' imported but unused (glob) | ||||
setup.py:*: 'zlib' imported but unused (glob) | ||||
setup.py:*: 'bz2' imported but unused (glob) | ||||
setup.py:*: 'py2exe' imported but unused (glob) | ||||
tests/hghave.py:*: '_lsprof' imported but unused (glob) | ||||
tests/hghave.py:*: 'publish_cmdline' imported but unused (glob) | ||||
tests/hghave.py:*: 'pygments' imported but unused (glob) | ||||
tests/hghave.py:*: 'ssl' imported but unused (glob) | ||||
Matt Mackall
|
r20644 | contrib/win32/hgwebdir_wsgi.py:93: 'from isapi.install import *' used; unable to detect undefined names (glob) | ||
Matt Mackall
|
r21293 | tests/filterpyflakes.py:58: undefined name 'undefinedname' | ||
timeless
|
r14140 | |||
Matt Mackall
|
r21208 | #endif | ||