Mercurial > evolve
annotate tests/test-check-pyflakes.t @ 5360:8be20dec3aef stable
tests: modernize test-check-pyflakes.t
Using newer hg files instead of hg locate, using null bytes as separators,
excluding thirdparty dir.
Copied from test-check-flake8.t.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sun, 24 May 2020 13:02:48 +0800 |
parents | 824fcba2cdb4 |
children | f354de498737 |
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 | |
5360
8be20dec3aef
tests: modernize test-check-pyflakes.t
Anton Shestakov <av6@dwimlabs.net>
parents:
4333
diff
changeset
|
10 $ hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' \ |
8be20dec3aef
tests: modernize test-check-pyflakes.t
Anton Shestakov <av6@dwimlabs.net>
parents:
4333
diff
changeset
|
11 > -X hgext3rd/evolve/thirdparty \ |
8be20dec3aef
tests: modernize test-check-pyflakes.t
Anton Shestakov <av6@dwimlabs.net>
parents:
4333
diff
changeset
|
12 > 2>/dev/null \ |
8be20dec3aef
tests: modernize test-check-pyflakes.t
Anton Shestakov <av6@dwimlabs.net>
parents:
4333
diff
changeset
|
13 > | xargs -0 pyflakes 2>/dev/null |