]> granicus.if.org Git - python/commitdiff
Temporary hack for issue #25180: exclude test_fstring.py from the unparse round-tripp...
authorEric V. Smith <eric@trueblade.com>
Sat, 19 Sep 2015 19:49:57 +0000 (15:49 -0400)
committerEric V. Smith <eric@trueblade.com>
Sat, 19 Sep 2015 19:49:57 +0000 (15:49 -0400)
Lib/test/test_tools/test_unparse.py

index 976a6c59ae10ba61f4f5270d482e6901a615bae6..920fcbd6ee1acaa6d5d8bb570971a1b4e1eb68e9 100644 (file)
@@ -264,6 +264,8 @@ class DirectoryTestCase(ASTTestCase):
         for d in self.test_directories:
             test_dir = os.path.join(basepath, d)
             for n in os.listdir(test_dir):
+                if n == 'test_fstring.py':
+                    continue
                 if n.endswith('.py') and not n.startswith('bad'):
                     names.append(os.path.join(test_dir, n))