Skip to content

Commit

Permalink
Updated file names tested
Browse files Browse the repository at this point in the history
  • Loading branch information
IanLee1521 committed May 26, 2016
1 parent fba2cc6 commit 90d83aa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ test :
python pycodestyle.py --testsuite testsuite

selftest :
python pycodestyle.py --statistics pep8.py
python pycodestyle.py --statistics pycodestyle.py

doctest :
python pycodestyle.py --doctest
Expand Down
2 changes: 1 addition & 1 deletion pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Check Python source code formatting, according to PEP 8.
For usage and a list of options, try this:
$ python pep8.py -h
$ python pycodestyle.py -h
This program and its regression test suite live here:
https://github.com/pycqa/pycodestyle
Expand Down
2 changes: 1 addition & 1 deletion testsuite/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def selftest(options):
print("%s: %s" % (code, source))
else:
count_failed += 1
print("pep8.py: %s:" % error)
print("pycodestyle.py: %s:" % error)
for line in checker.lines:
print(line.rstrip())
return count_failed, count_all
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ envlist = py26, py27, py32, py33, py34, py35, pypy, pypy3, jython
commands =
{envpython} setup.py install
{envpython} pycodestyle.py --testsuite testsuite
{envpython} pycodestyle.py --statistics pep8.py
{envpython} pycodestyle.py --statistics pycodestyle.py
{envpython} pycodestyle.py --doctest
{envpython} -m testsuite.test_all

0 comments on commit 90d83aa

Please sign in to comment.