Skip to content

Commit b6bdb77

Browse files
committed
removed type-ignores on pytest.marks. typing is suppreted, now
1 parent 274d1e5 commit b6bdb77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/nichtparasoup-imagecrawler-plugin/tests/test_90_examples/test_shipped_config_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class ShippedExampleConfigFileTest(ConfigFileTest):
1515
def test_has_examples(self) -> None:
1616
self.assertGreater(len(self.__class__.__EXAMPLE_FILES), 0)
1717

18-
@pytest.mark.online # type: ignore # probing goes over the internet
19-
@pytest.mark.slow # type: ignore # probing might be slow
18+
@pytest.mark.online # probing goes over the internet
19+
@pytest.mark.slow # probing might be slow
2020
@idata((basename(file),) for file in __EXAMPLE_FILES) # type: ignore
2121
@unpack # type: ignore
2222
def test_example(self, filename: str) -> None:

0 commit comments

Comments
 (0)