From b6bdb773650fb41600579f480e61d1b07ab01991 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Sun, 7 Mar 2021 12:29:17 +0100 Subject: [PATCH] removed type-ignores on pytest.marks. typing is suppreted, now --- .../tests/test_90_examples/test_shipped_config_files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/nichtparasoup-imagecrawler-plugin/tests/test_90_examples/test_shipped_config_files.py b/examples/nichtparasoup-imagecrawler-plugin/tests/test_90_examples/test_shipped_config_files.py index d6bf9497..489167ef 100644 --- a/examples/nichtparasoup-imagecrawler-plugin/tests/test_90_examples/test_shipped_config_files.py +++ b/examples/nichtparasoup-imagecrawler-plugin/tests/test_90_examples/test_shipped_config_files.py @@ -15,8 +15,8 @@ class ShippedExampleConfigFileTest(ConfigFileTest): def test_has_examples(self) -> None: self.assertGreater(len(self.__class__.__EXAMPLE_FILES), 0) - @pytest.mark.online # type: ignore # probing goes over the internet - @pytest.mark.slow # type: ignore # probing might be slow + @pytest.mark.online # probing goes over the internet + @pytest.mark.slow # probing might be slow @idata((basename(file),) for file in __EXAMPLE_FILES) # type: ignore @unpack # type: ignore def test_example(self, filename: str) -> None: