diff options
author | Guido van Rossum <guido@python.org> | 2007-08-29 01:26:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-29 01:26:39 (GMT) |
commit | 47229db4e0f8442c92af5e9d044715d7d63b2e7e (patch) | |
tree | 1cbbdba04ebf74dc7dc081702dba813a2431f53a /Lib/test/test_ssl.py | |
parent | 3e57b52bb800b8d001092490f2a658271d613d6d (diff) | |
download | cpython-47229db4e0f8442c92af5e9d044715d7d63b2e7e.zip cpython-47229db4e0f8442c92af5e9d044715d7d63b2e7e.tar.gz cpython-47229db4e0f8442c92af5e9d044715d7d63b2e7e.tar.bz2 |
Disable test_ssl until ssl.py has been fixed.
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r-- | Lib/test/test_ssl.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 35c6af9..de57728 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -338,6 +338,8 @@ def test_main(verbose=False): if skip_expected: raise test_support.TestSkipped("socket module has no ssl support") + raise test_support.TestSkipped("Disabling this until ssl.py is fixed") + global CERTFILE CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert.pem") |