Commit d5b3fed1 authored by Žiga Seilnacht's avatar Žiga Seilnacht

Patch #1695862: remove old test directory that causes test_urllib failures

on Windows buildbots.  The change is a one time fix and will be removed
after a successful buildbot run.
parent aa7b16a8
......@@ -547,6 +547,20 @@ class Pathname_Tests(unittest.TestCase):
def test_main():
# cleanup old test dir on Windows buildbots
old_test_path = test_support.TESTFN + ".2"
if os.path.isdir(old_test_path):
for root, dirs, files in os.walk(old_test_path, topdown=False):
for name in files:
os.remove(os.path.join(root, name))
for name in dirs:
dirname = os.path.join(root, name)
if not os.path.islink(dirname):
os.rmdir(dirname)
else:
os.remove(dirname)
os.rmdir(old_test_path)
test_support.run_unittest(
urlopen_FileTests,
urlopen_HttpTests,
......
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