Mercurial > evolve
annotate tests/test-check-pyflakes.t @ 2006:c817efec4afc
flake8: fix E111 style
OFF BY ONE ERRORS ARE THE WORST
author | Sean Farley <sean@farley.io> |
---|---|
date | Tue, 30 Aug 2016 15:18:43 -0700 |
parents | 053190199959 |
children | 143c8e4dc22d |
rev | line source |
---|---|
1930 | 1 #require test-repo pyflakes |
2 | |
3 Copied from Mercurial core (60ee2593a270) | |
4 | |
5 $ cd "`dirname "$TESTDIR"`" | |
6 | |
7 run pyflakes on all tracked files ending in .py or without a file ending | |
8 (skipping binary file random-seed) | |
9 | |
10 $ hg locate 'set:**.py or grep("^!#.*python")' 2>/dev/null \ | |
11 > | xargs pyflakes 2>/dev/null | |
12 | |
2002 | 13 run flake8 if it exists; if it doesn't, then just skip |
14 | |
15 $ type flake8 >/dev/null 2>/dev/null && hg files -0 'glob:**.py' | xargs -0 flake8 || true |