summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-18 12:42:38 (GMT)
committerGitHub <noreply@github.com>2020-11-18 12:42:38 (GMT)
commit802ff7c0d339376a1b974e57d2caca898310de3d (patch)
tree33de5e7fc8d1075e250afafbd313249919cf15fa
parent71ba5f52d2a80e7beffc923c54c0b6345cd0637a (diff)
downloadcpython-802ff7c0d339376a1b974e57d2caca898310de3d.zip
cpython-802ff7c0d339376a1b974e57d2caca898310de3d.tar.gz
cpython-802ff7c0d339376a1b974e57d2caca898310de3d.tar.bz2
[3.9] bpo-41561: skip test_min_max_version_mismatch (GH-22308) (GH-23363)
skip test_min_max_version_mismatch when TLS 1.0 is not available Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit ce04e7105bc396c32667a22b928a712ba0778a3f) Co-authored-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: GH:tiran
-rw-r--r--Lib/test/test_ssl.py1
-rw-r--r--Misc/NEWS.d/next/Tests/2020-09-18-16-14-03.bpo-41561.uPnwrW.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 5d496c6..27cb884 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -3831,6 +3831,7 @@ class ThreadedTests(unittest.TestCase):
@requires_minimum_version
@requires_tls_version('TLSv1_2')
+ @requires_tls_version('TLSv1')
def test_min_max_version_mismatch(self):
client_context, server_context, hostname = testing_context()
# client 1.0, server 1.2 (mismatch)
diff --git a/Misc/NEWS.d/next/Tests/2020-09-18-16-14-03.bpo-41561.uPnwrW.rst b/Misc/NEWS.d/next/Tests/2020-09-18-16-14-03.bpo-41561.uPnwrW.rst
new file mode 100644
index 0000000..10bce82
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2020-09-18-16-14-03.bpo-41561.uPnwrW.rst
@@ -0,0 +1 @@
+test_ssl: skip test_min_max_version_mismatch when TLS 1.0 is not available