diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 548c32fb3..fb0d409da 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -2211,13 +2211,16 @@ class TestCounter(unittest.TestCase): ################################################################################ def test_main(verbose=None): - NamedTupleDocs = doctest.DocTestSuite(module=collections) - test_classes = [TestNamedTuple, NamedTupleDocs, TestOneTrickPonyABCs, + # TODO: RUSTPYTHON + # NamedTupleDocs = doctest.DocTestSuite(module=collections) + # test_classes = [TestNamedTuple, NamedTupleDocs, TestOneTrickPonyABCs, + test_classes = [TestNamedTuple, TestOneTrickPonyABCs, TestCollectionABCs, TestCounter, TestChainMap, TestUserObjects, ] support.run_unittest(*test_classes) - support.run_doctest(collections, verbose) + # TODO: RUSTPYTHON + # support.run_doctest(collections, verbose) if __name__ == "__main__":