tools: Always show problems with problem status.

- Some tools are strict and produce many issues. Previously
  their problems were ignored, and given normal status.
- Which tools produce too many issues is not obvious, better
  to be consistent and show problems for all.
This commit is contained in:
Andrew Hamilton 2018-07-05 14:26:52 +10:00
parent d40e0a8b59
commit 3a62a2a0d7
3 changed files with 3 additions and 5 deletions

View file

@ -104,7 +104,7 @@ class ToolsTestCase(unittest.TestCase):
def test_mypy(self):
self._test_tool(tools.mypy, [("hi3.py", tools.Status.ok),
("hi.py", tools.Status.normal)])
("hi.py", tools.Status.problem)])
def test_python_coverage(self):
self._test_tool(tools.python_coverage, self.HI_NORMAL)