summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-27 09:41:57 +0100
committerGeorg Brandl <georg@python.org>2013-10-27 09:41:57 +0100
commitd55671730aacc380053ec445133b87015c40b959 (patch)
tree44b5dfc98714b56ab583b0357f95dd270b0c03ba
parent61f1b03f7973557ba20f26eb6268256b13aca67a (diff)
downloadcpython-3.3.3rc1.tar.gz
Skip overzealous test for existence of the online license.html for pre-release versions.v3.3.3rc1
-rw-r--r--Lib/test/test_site.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
index db94b7b2a7..c294c65b58 100644
--- a/Lib/test/test_site.py
+++ b/Lib/test/test_site.py
@@ -416,6 +416,8 @@ class ImportSideEffectTests(unittest.TestCase):
self.fail("sitecustomize not imported automatically")
@test.support.requires_resource('network')
+ @unittest.skipUnless(sys.version_info[3] == 'final',
+ 'only for released versions')
def test_license_exists_at_url(self):
# 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.