Commit 724d0895 authored by Georg Brandl's avatar Georg Brandl

Temporarily disable newly failing test for the release.

parent 7bd5dbe9
......@@ -273,6 +273,9 @@ class TestShutil(unittest.TestCase):
@unittest.skipUnless(hasattr(os, 'link'), 'requires os.link')
def test_dont_copy_file_onto_link_to_itself(self):
# Temporarily disable test on Windows.
if os.name == 'nt':
return
# bug 851123.
os.mkdir(TESTFN)
src = os.path.join(TESTFN, 'cheese')
......
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