Skip to content

Commit

Permalink
CI: workaround OpenBSD / Python 3.10 / ed25510 x509
Browse files Browse the repository at this point in the history
  • Loading branch information
pajod committed Aug 23, 2024
1 parent cebb7de commit a452f12
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_nginx.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ def generate_dummy_ssl_cert(cert_path, key_path):
"req",
"-new",
"-newkey",
"ed25519",
# "ed25519",
# OpenBSD 7.5 / LibreSSL 3.9.0 / Python 3.10.13
# ssl.SSLError: [SSL: UNKNOWN_CERTIFICATE_TYPE] unknown certificate type (_ssl.c:3900)
# workaround: use RSA keys for testing
"rsa",
"-outform",
"PEM",
"-subj",
Expand Down

0 comments on commit a452f12

Please sign in to comment.