diff options
author | Christian Heimes <christian@python.org> | 2021-05-01 14:05:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 14:05:01 (GMT) |
commit | f82fd77717b58c97a16c05e25c72388b35860459 (patch) | |
tree | ba7c61b6b350f0d4de19e2ee9fd095f2937343d7 | |
parent | bf99b7151663905fd5e71efe45184dc8fffc3236 (diff) | |
download | cpython-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.py | 2 |
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: |