File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,14 @@ jobs:
109109
110110 export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
111111 export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
112+ export SSL_CERT_DIR=/usr/local/share/ca-certificates/
113+
114+ echo "***** DEBUG *****"
115+ pip debug
116+
117+ ls -l /usr/lib/ssl/
118+ ls -l /usr/lib/ssl/certs
119+ echo "===== END ===="
112120
113121 make verify-integration
114122 make verify-credentials-via-python
Original file line number Diff line number Diff line change 44# Copyright (c) 2020-2024 Kiwi TCMS project. All rights reserved.
55# Author: Alexander Todorov <info@kiwitcms.org>
66#
7-
7+ import ssl
88import unittest
99
1010from datetime import datetime
@@ -39,4 +39,9 @@ def test_create_objects_works(self):
3939
4040
4141if __name__ == "__main__" :
42+ defaults = ssl .get_default_verify_paths ()
43+ print ("**** SSL DEFAULTS ****" )
44+ print (defaults )
45+ print ("***** END *****" )
46+
4247 unittest .main ()
You can’t perform that action at this time.
0 commit comments