def test_checkers_testsuite(self): init_tests(self._style) report = self._style.check_files() self.assertFalse(report.total_errors, msg='%s failure(s)' % report.total_errors)
def test_checkers_testsuite(self) -> None: init_tests(self._style) report = self._style.check_files() self.assertFalse(report.total_errors, msg='%s failure(s)' % report.total_errors)
def test_checkers_testsuite(self): init_tests(self._style) report = self._style.check_files() self.assertFalse(report.total_errors, msg='{0!s} failure(s)'.format(report.total_errors))