summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-05-01 14:05:01 (GMT)
committerGitHub <noreply@github.com>2021-05-01 14:05:01 (GMT)
commitf82fd77717b58c97a16c05e25c72388b35860459 (patch)
treeba7c61b6b350f0d4de19e2ee9fd095f2937343d7
parentbf99b7151663905fd5e71efe45184dc8fffc3236 (diff)
downloadcpython-f82fd77717b58c97a16c05e25c72388b35860459.zip
cpython-f82fd77717b58c97a16c05e25c72388b35860459.tar.gz
cpython-f82fd77717b58c97a16c05e25c72388b35860459.tar.bz2
bpo-43989: Temporarily disable warnings in ssltests (GH-25780)
-Werror is currently broken.
-rw-r--r--Lib/test/ssltests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/ssltests.py b/Lib/test/ssltests.py
index 5073ae1..292453a 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: