Issue #14695: Run Tools/parser/test_unparse.py as part of test_tools.
diff --git a/Lib/test/test_tools.py b/Lib/test/test_tools.py
index 8ccabfb..87a1ec8 100644
--- a/Lib/test/test_tools.py
+++ b/Lib/test/test_tools.py
@@ -122,6 +122,11 @@
         self.assertTrue(wmock.open.called)
 
 
+# Run the tests in Tools/parser/test_unparse.py
+with support.DirsOnSysPath(os.path.join(basepath, 'parser')):
+    from test_unparse import UnparseTestCase, DirectoryTestCase
+
+
 def test_main():
     support.run_unittest(*[obj for obj in globals().values()
                                if isinstance(obj, type)])