diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2021-05-01 20:53:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 20:53:57 (GMT) |
commit | 1ae05fdf2d0a4cf12e355ad74c437cbfa89c9b93 (patch) | |
tree | 801b62b2ea81b39f5cb0725fecd31b2c7a346a7b | |
parent | ddbef71a2c166a5d5dd168e26493973053a953d6 (diff) | |
download | cpython-1ae05fdf2d0a4cf12e355ad74c437cbfa89c9b93.zip cpython-1ae05fdf2d0a4cf12e355ad74c437cbfa89c9b93.tar.gz cpython-1ae05fdf2d0a4cf12e355ad74c437cbfa89c9b93.tar.bz2 |
Revert "bpo-43989: Temporarily disable warnings in ssltests (GH-25780)" (GH-25793)
Reverts python/cpython#25780
Automerge-Triggered-By: GH:tiran
-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 292453a..5073ae1 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: |