##// END OF EJS Templates
test-check-pyflakes: do not leave test.py in the repo...
Jun Wu -
r33418:1f3b54f3 default
parent child Browse files
Show More
@@ -1,21 +1,21 b''
1 1 #require test-repo pyflakes hg10
2 2
3 3 $ . "$TESTDIR/helpers-testrepo.sh"
4 $ cd "`dirname "$TESTDIR"`"
5 4
6 5 run pyflakes on all tracked files ending in .py or without a file ending
7 6 (skipping binary file random-seed)
8 7
9 8 $ cat > test.py <<EOF
10 9 > print(undefinedname)
11 10 > EOF
12 11 $ pyflakes test.py 2>/dev/null | "$TESTDIR/filterpyflakes.py"
13 12 test.py:1: undefined name 'undefinedname'
14 13
14 $ cd "`dirname "$TESTDIR"`"
15 15
16 16 $ testrepohg locate 'set:**.py or grep("^#!.*python")' \
17 17 > -X hgext/fsmonitor/pywatchman \
18 18 > -X mercurial/pycompat.py -X contrib/python-zstandard \
19 19 > 2>/dev/null \
20 20 > | xargs pyflakes 2>/dev/null | "$TESTDIR/filterpyflakes.py"
21 21
General Comments 0
You need to be logged in to leave comments. Login now