[Python-checkins] bpo-43989: Temporarily disable warnings in ssltests (GH-25780)

tiran webhook-mailer at python.org
Sat May 1 10:05:11 EDT 2021


https://github.com/python/cpython/commit/f82fd77717b58c97a16c05e25c72388b35860459
commit: f82fd77717b58c97a16c05e25c72388b35860459
branch: master
author: Christian Heimes <christian at python.org>
committer: tiran <christian at python.org>
date: 2021-05-01T16:05:01+02:00
summary:

bpo-43989: Temporarily disable warnings in ssltests (GH-25780)

-Werror is currently broken.

files:
M Lib/test/ssltests.py

diff --git a/Lib/test/ssltests.py b/Lib/test/ssltests.py
index 5073ae12204b1..292453a813dcd 100644
--- a/Lib/test/ssltests.py
+++ b/Lib/test/ssltests.py
@@ -16,7 +16,7 @@ def run_regrtests(*extra_args):
     print(ssl.OPENSSL_VERSION)
     args = [
         sys.executable,
-        '-Werror', '-bb',  # turn warnings into exceptions
+        # '-Werror', '-bb',  # turn warnings into exceptions
         '-m', 'test',
     ]
     if not extra_args:



More information about the Python-checkins mailing list