]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43989: Temporarily disable warnings in ssltests (GH-25780)
authorChristian Heimes <christian@python.org>
Sat, 1 May 2021 14:05:01 +0000 (16:05 +0200)
committerGitHub <noreply@github.com>
Sat, 1 May 2021 14:05:01 +0000 (16:05 +0200)
-Werror is currently broken.

Lib/test/ssltests.py

index 5073ae12204b1642b5bfbdb33bdb97ff90f58ef2..292453a813dcd0ec0b4681d64e63408b97d811bd 100644 (file)
@@ -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: