File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ async def test_connect_and_serve_with_ed25519_certificate(self):
196196 )
197197 )
198198
199+ @skipIf ("ed448" in SKIP_TESTS , "Skipping ed448 tests" )
199200 @asynctest
200201 async def test_connect_and_serve_with_ed448_certificate (self ):
201202 await self ._test_connect_and_serve_with_certificate (
Original file line number Diff line number Diff line change 22import datetime
33import ssl
44from functools import partial
5- from unittest import TestCase
5+ from unittest import TestCase , skipIf
66from unittest .mock import patch
77
88from aioquic import tls
4949 SERVER_CACERTFILE ,
5050 SERVER_CERTFILE ,
5151 SERVER_KEYFILE ,
52+ SKIP_TESTS ,
5253 generate_ec_certificate ,
5354 generate_ed448_certificate ,
5455 generate_ed25519_certificate ,
@@ -583,6 +584,7 @@ def test_handshake_with_ed25519_certificate(self):
583584 * generate_ed25519_certificate (common_name = "example.com" )
584585 )
585586
587+ @skipIf ("ed448" in SKIP_TESTS , "Skipping ed448 tests" )
586588 def test_handshake_with_ed448_certificate (self ):
587589 self ._test_handshake_with_certificate (
588590 * generate_ed448_certificate (common_name = "example.com" )
You can’t perform that action at this time.
0 commit comments