Skip to content

Commit

Permalink
removed type-ignores on pytest.marks. typing is suppreted, now
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowalleck committed Mar 7, 2021
1 parent 274d1e5 commit b6bdb77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b6bdb77

Please sign in to comment.