Skip to content

Commit 03ffe26

Browse files
committed
1 parent 5b91ccf commit 03ffe26

2 files changed

Lines changed: 19 additions & 85 deletions

File tree

.github/workflows/pylint-checks.yml

Lines changed: 0 additions & 85 deletions
This file was deleted.

.github/workflows/unit-tests.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,25 @@ jobs:
104104
run: |
105105
pip freeze
106106
107+
- name: test hashlib md4 support fix
108+
run: |
109+
python -c 'import hashlib; hashlib.new("md4")' || true
110+
111+
cat >> /etc/ssl/openssl.cnf <<EOF
112+
113+
[provider_sect]
114+
default = default_sect
115+
legacy = legacy_sect
116+
117+
[default_sect]
118+
activate = 1
119+
120+
[legacy_sect]
121+
activate = 1
122+
EOF
123+
124+
python -c 'import hashlib; hashlib.new("md4")' || true
125+
107126
- name: set settings path
108127
shell: bash
109128
run: |

0 commit comments

Comments
 (0)