Show More
@@ -1,25 +1,33 b'' | |||
|
1 | 1 | #require test-repo pyflakes hg10 |
|
2 | 2 | |
|
3 | 3 | $ . "$TESTDIR/helpers-testrepo.sh" |
|
4 | 4 | |
|
5 | 5 | run pyflakes on all tracked files ending in .py or without a file ending |
|
6 | 6 | (skipping binary file random-seed) |
|
7 | 7 | |
|
8 | 8 | $ cat > test.py <<EOF |
|
9 | 9 | > print(undefinedname) |
|
10 | 10 | > EOF |
|
11 | 11 | $ "$PYTHON" -m pyflakes test.py 2>/dev/null | "$TESTDIR/filterpyflakes.py" |
|
12 | 12 | test.py:1:* undefined name 'undefinedname' (glob) |
|
13 | 13 | |
|
14 | 14 | $ cd "`dirname "$TESTDIR"`" |
|
15 | 15 | |
|
16 | 16 | $ testrepohg locate 'set:**.py or grep("^#!.*python")' \ |
|
17 | 17 | > -X hgext/fsmonitor/pywatchman \ |
|
18 |
> |
|
|
18 | > -X contrib/python-zstandard \ | |
|
19 | 19 | > -X mercurial/thirdparty \ |
|
20 | 20 | > 2>/dev/null \ |
|
21 | 21 | > | xargs "$PYTHON" -m pyflakes 2>/dev/null | "$TESTDIR/filterpyflakes.py" |
|
22 | 22 | contrib/perf.py:*:* undefined name 'xrange' (glob) (?) |
|
23 | 23 | mercurial/hgweb/server.py:*:* undefined name 'reload' (glob) (?) |
|
24 | mercurial/pycompat.py:*:* 'codecs' imported but unused (glob) | |
|
25 | mercurial/pycompat.py:*:* 'concurrent.futures' imported but unused (glob) | |
|
26 | mercurial/pycompat.py:*:* 'http.client as httplib' imported but unused (glob) | |
|
27 | mercurial/pycompat.py:*:* 'http.cookiejar as cookielib' imported but unused (glob) | |
|
28 | mercurial/pycompat.py:*:* 'io' imported but unused (glob) | |
|
29 | mercurial/pycompat.py:*:* 'queue' imported but unused (glob) | |
|
30 | mercurial/pycompat.py:*:* 'socketserver' imported but unused (glob) | |
|
31 | mercurial/pycompat.py:*:* 'xmlrpc.client as xmlrpclib' imported but unused (glob) | |
|
24 | 32 | mercurial/util.py:*:* 'pickle' imported but unused (glob) |
|
25 | 33 |
General Comments 0
You need to be logged in to leave comments.
Login now