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

-Werror is currently broken.
This commit is contained in:
Christian Heimes 2021-05-01 16:05:01 +02:00 committed by GitHub
parent bf99b71516
commit f82fd77717
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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: