Commit edef3eba authored by Eric V. Smith's avatar Eric V. Smith

Temporary hack for issue #25180: exclude test_fstring.py from the unparse...

Temporary hack for issue #25180: exclude test_fstring.py from the unparse round-tripping, while I figure out how to properly fix it.
parent 235a6f09
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment