mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00
fix skipping #27921 for windows
This commit is contained in:
parent
1c2400cfdc
commit
ff79396c83
1 changed files with 1 additions and 2 deletions
|
@ -288,8 +288,7 @@ class DirectoryTestCase(ASTTestCase):
|
||||||
# it's very much a hack that I'm skipping these files, but
|
# it's very much a hack that I'm skipping these files, but
|
||||||
# I can't figure out why they fail. I'll fix it when I
|
# I can't figure out why they fail. I'll fix it when I
|
||||||
# address issue #27948.
|
# address issue #27948.
|
||||||
if (filename.endswith('/test_fstring.py') or
|
if os.path.basename(filename) in ('test_fstring.py', 'test_traceback.py'):
|
||||||
filename.endswith('/test_traceback.py')):
|
|
||||||
if test.support.verbose:
|
if test.support.verbose:
|
||||||
print(f'Skipping {filename}: see issue 27921')
|
print(f'Skipping {filename}: see issue 27921')
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue