Skip to content

Commit e48a811

Browse files
committed
DEBUG SSL failure
1 parent 72c75c3 commit e48a811

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/integration.yml

+9
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,17 @@ jobs:
107107
password = changeme
108108
_EOF_
109109
110+
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
110111
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
111112
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 ===="
112121
113122
make verify-integration
114123
make verify-credentials-via-python

tests/krb5/integration_test.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) 2020-2024 Kiwi TCMS project. All rights reserved.
55
# Author: Alexander Todorov <info@kiwitcms.org>
66
#
7-
7+
import ssl
88
import unittest
99

1010
from datetime import datetime
@@ -39,4 +39,9 @@ def test_create_objects_works(self):
3939

4040

4141
if __name__ == "__main__":
42+
defaults = ssl.get_default_verify_paths()
43+
print("**** SSL DEFAULTS ****")
44+
print(defaults)
45+
print("***** END *****")
46+
4247
unittest.main()

0 commit comments

Comments
 (0)