bpo-33522: Enable CI builds on Visual Studio Team Services (#6865)

This commit is contained in:
Steve Dower 2018-05-16 17:50:29 -04:00 committed by GitHub
parent 713a936736
commit e5f41d2f1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 603 additions and 25 deletions

View file

@ -1516,7 +1516,7 @@ class _BasePathTest(object):
# resolves to 'dirB/..' first before resolving to parent of dirB.
self._check_resolve_relative(p, P(BASE, 'foo', 'in', 'spam'), False)
# Now create absolute symlinks
d = tempfile.mkdtemp(suffix='-dirD')
d = support._longpath(tempfile.mkdtemp(suffix='-dirD'))
self.addCleanup(support.rmtree, d)
os.symlink(os.path.join(d), join('dirA', 'linkX'))
os.symlink(join('dirB'), os.path.join(d, 'linkY'))