Commit 7f35307 1 parent 72c75c3 commit 7f35307 Copy full SHA for 7f35307
File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,10 @@ jobs:
110
110
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
111
111
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
112
112
113
+ echo "***** DEBUG *****"
114
+ pip debug
115
+ echo "===== END ===="
116
+
113
117
make verify-integration
114
118
make verify-credentials-via-python
115
119
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
+ defauls = 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