Kaydet (Commit) 78abc9dc authored tarafından Georg Brandl's avatar Georg Brandl

Skip overzealous test for existence of the online license.html for pre-release versions.

üst 2d34f41b
...@@ -416,6 +416,8 @@ class ImportSideEffectTests(unittest.TestCase): ...@@ -416,6 +416,8 @@ class ImportSideEffectTests(unittest.TestCase):
self.fail("sitecustomize not imported automatically") self.fail("sitecustomize not imported automatically")
@test.support.requires_resource('network') @test.support.requires_resource('network')
@unittest.skipUnless(sys.version_info[3] == 'final',
'only for released versions')
def test_license_exists_at_url(self): def test_license_exists_at_url(self):
# This test is a bit fragile since it depends on the format of the # This test is a bit fragile since it depends on the format of the
# string displayed by license in the absence of a LICENSE file. # string displayed by license in the absence of a LICENSE file.
......
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