Skip to content
Snippets Groups Projects
Commit f9099e21 authored by Anton Shestakov's avatar Anton Shestakov
Browse files

tests: consistently use pyflakes as a Python module

We check availability of pyflakes as a module, and also running it for real as
a module. Only fair to test filterpyflakes.py working correctly when using
pyflakes as a module too.

This is a graft of a similar fix that ended up on default.

Differential Revision: https://phab.mercurial-scm.org/D8629
parent 1ca0d5ca
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
$ cat > test.py <<EOF
> print(undefinedname)
> EOF
$ pyflakes test.py 2>/dev/null | "$TESTDIR/filterpyflakes.py"
$ $PYTHON -m pyflakes test.py 2>/dev/null | "$TESTDIR/filterpyflakes.py"
test.py:1: undefined name 'undefinedname'
$ cd "`dirname "$TESTDIR"`"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment