diff --git a/tests/test_postparser_author_info.py b/tests/test_postparser_author_info.py index dab2109..84bb48e 100644 --- a/tests/test_postparser_author_info.py +++ b/tests/test_postparser_author_info.py @@ -1,4 +1,9 @@ -# pylint: disable=protected-access, wrong-import-position +# flake8: noqa +# pylint: disable=broad-exception-raised, raise-missing-from, too-many-arguments, redefined-outer-name +# pylint: disable=multiple-statements, logging-fstring-interpolation, trailing-whitespace, line-too-long +# pylint: disable=broad-exception-caught, missing-function-docstring, missing-class-docstring +# pylint: disable=f-string-without-interpolation, protected-access, wrong-import-position +# pylance: disable=reportMissingImports, reportMissingModuleSource import unittest from unittest.mock import MagicMock @@ -90,4 +95,4 @@ class TestPostParserGetAuthorInfo(unittest.TestCase): self.assertEqual(self.parser._get_author_info(message), 'Unknown author') if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() diff --git a/tests/test_postparser_extract_flags.py b/tests/test_postparser_extract_flags.py index 75d7056..b07689d 100644 --- a/tests/test_postparser_extract_flags.py +++ b/tests/test_postparser_extract_flags.py @@ -1,4 +1,9 @@ -# pylint: disable=protected-access, wrong-import-position +# flake8: noqa +# pylint: disable=broad-exception-raised, raise-missing-from, too-many-arguments, redefined-outer-name +# pylint: disable=multiple-statements, logging-fstring-interpolation, trailing-whitespace, line-too-long +# pylint: disable=broad-exception-caught, missing-function-docstring, missing-class-docstring +# pylint: disable=f-string-without-interpolation, protected-access, wrong-import-position +# pylance: disable=reportMissingImports, reportMissingModuleSource import unittest from unittest.mock import MagicMock, PropertyMock