[Python-checkins] bpo-41939: always enable test_site.test_license_exists_at_url (GH-22688)

Miss Skeleton (bot) webhook-mailer at python.org
Tue Oct 13 21:59:21 EDT 2020


https://github.com/python/cpython/commit/8b4642d3288e187faad24283c949ecf53fecad5b
commit: 8b4642d3288e187faad24283c949ecf53fecad5b
branch: 3.8
author: Miss Skeleton (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-10-13T18:59:12-07:00
summary:

bpo-41939: always enable test_site.test_license_exists_at_url (GH-22688)

(cherry picked from commit 6a48518e8dac3521ff387ee67cdf33783114a257)

Co-authored-by: Ned Deily <nad at python.org>

files:
M Lib/test/test_site.py

diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
index b95c108771d8c..6b3dba0f0a290 100644
--- a/Lib/test/test_site.py
+++ b/Lib/test/test_site.py
@@ -492,8 +492,6 @@ def test_sitecustomize_executed(self):
 
     @test.support.requires_resource('network')
     @test.support.system_must_validate_cert
-    @unittest.skipUnless(sys.version_info[3] == 'final',
-                         'only for released versions')
     @unittest.skipUnless(hasattr(urllib.request, "HTTPSHandler"),
                          'need SSL support to download license')
     def test_license_exists_at_url(self):



More information about the Python-checkins mailing list