We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e99ec4 commit 2a82c7eCopy full SHA for 2a82c7e
2 files changed
CHANGES.txt
@@ -7,6 +7,9 @@ Changelog
7
8
* Fix regression with the ``--diff`` option. (Issue #169)
9
10
+* Fix the ``TestReport`` class to print the unexpected warnings and
11
+ errors.
12
+
13
14
1.4.3 (2013-02-22)
15
------------------
testsuite/test_pep8.py
@@ -37,7 +37,7 @@ def get_file_results(self):
37
for key in set(self.counters) - set(self._benchmark_keys):
38
del self.counters[key]
39
self.messages = {}
40
- return self.file_errors
+ return super(TestReport, self).get_file_results()
41
42
def print_results(self):
43
results = ("%(physical lines)d lines tested: %(files)d files, "
0 commit comments