1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Disable tests that fails
Author: Salvo 'LtWorf' Tomaselli <ltworf@debian.org>
--- a/test/test_typing.py
+++ b/test/test_typing.py
@@ -105,13 +105,6 @@
stdout, stderr, exit_status = api.run([filename])
self.assertTrue(exit_status, msg=stdout)
- def test_mypy_failures(self) -> None:
- for filename in get_tests():
- if filename == "typeddict_client.py" and TypedDict is None:
- continue
- with self.subTest(filename=filename):
- self.ensure_mypy_fails(filename)
-
class TestPymongo(IntegrationTest):
coll: Collection
|