Skip to content

Commit 90d83aa

Browse files
committed
Updated file names tested
1 parent fba2cc6 commit 90d83aa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ test :
22
python pycodestyle.py --testsuite testsuite
33

44
selftest :
5-
python pycodestyle.py --statistics pep8.py
5+
python pycodestyle.py --statistics pycodestyle.py
66

77
doctest :
88
python pycodestyle.py --doctest

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Check Python source code formatting, according to PEP 8.
3030
3131
For usage and a list of options, try this:
32-
$ python pep8.py -h
32+
$ python pycodestyle.py -h
3333
3434
This program and its regression test suite live here:
3535
https://github.com/pycqa/pycodestyle

testsuite/support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def selftest(options):
119119
print("%s: %s" % (code, source))
120120
else:
121121
count_failed += 1
122-
print("pep8.py: %s:" % error)
122+
print("pycodestyle.py: %s:" % error)
123123
for line in checker.lines:
124124
print(line.rstrip())
125125
return count_failed, count_all

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ envlist = py26, py27, py32, py33, py34, py35, pypy, pypy3, jython
1010
commands =
1111
{envpython} setup.py install
1212
{envpython} pycodestyle.py --testsuite testsuite
13-
{envpython} pycodestyle.py --statistics pep8.py
13+
{envpython} pycodestyle.py --statistics pycodestyle.py
1414
{envpython} pycodestyle.py --doctest
1515
{envpython} -m testsuite.test_all

0 commit comments

Comments
 (0)