Commit e48a811 1 parent 72c75c3 commit e48a811 Copy full SHA for e48a811
File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,17 @@ jobs:
107
107
password = changeme
108
108
_EOF_
109
109
110
+ export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
110
111
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
111
112
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
113
+ export SSL_CERT_DIR=/etc/ssl/certs/
114
+
115
+ echo "***** DEBUG *****"
116
+ pip debug
117
+
118
+ ls -l /usr/lib/ssl/
119
+ ls -l /usr/lib/ssl/certs
120
+ echo "===== END ===="
112
121
113
122
make verify-integration
114
123
make verify-credentials-via-python
Original file line number Diff line number Diff line change 4
4
# Copyright (c) 2020-2024 Kiwi TCMS project. All rights reserved.
5
5
# Author: Alexander Todorov <info@kiwitcms.org>
6
6
#
7
-
7
+ import ssl
8
8
import unittest
9
9
10
10
from datetime import datetime
@@ -39,4 +39,9 @@ def test_create_objects_works(self):
39
39
40
40
41
41
if __name__ == "__main__" :
42
+ defaults = ssl .get_default_verify_paths ()
43
+ print ("**** SSL DEFAULTS ****" )
44
+ print (defaults )
45
+ print ("***** END *****" )
46
+
42
47
unittest .main ()
You can’t perform that action at this time.
0 commit comments