summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2021-10-08 18:18:12 -0400
committerJeff Forcier <jeff@bitprophet.org>2021-10-08 20:40:08 -0400
commit3128fff093f23e063e30330a90777357140b950a (patch)
tree5a3407c91494fc9a64c00981e469686985e9bba1 /tests
parent36c8a0e944530efd35f8896223293324cce986e0 (diff)
downloadparamiko-3128fff093f23e063e30330a90777357140b950a.tar.gz
Try getting Kerberos working on Circle
Sadly it fails. Unclear whether I'm missing something, or if this represents a diff between the Ubuntu versions Travis last used and what Circle's images are on. I did get the tests themselves truly running, and while I trimmed back the deps a bit vs Travis, it's only as some of them were redundant/required by other packages we install here. Leaving it defined but not actually used in the workflow.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gssapi.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_gssapi.py b/tests/test_gssapi.py
index 308caa93..acdc7c82 100644
--- a/tests/test_gssapi.py
+++ b/tests/test_gssapi.py
@@ -26,6 +26,13 @@ import socket
from .util import needs_gssapi, KerberosTestCase, update_env
+#
+# NOTE: KerberosTestCase skips all tests if it was unable to import k5test
+# third-party library. That's the primary trigger for whether this module
+# effectively gets run or not. See tests/util.py for other triggers (a set of
+# env vars a human might have defined).
+#
+
@needs_gssapi
class GSSAPITest(KerberosTestCase):