From e1d09fe4b0f4ab8eee5e923dd63ae08155334e80 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 4 Feb 2016 19:56:51 +0200 Subject: Make NoValidConnectionsError picklable correctly Fixes #617. --- test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test.py') diff --git a/test.py b/test.py index 37fc5a6f..a1f13d85 100755 --- a/test.py +++ b/test.py @@ -43,8 +43,9 @@ from tests.test_kex import KexTest from tests.test_packetizer import PacketizerTest from tests.test_auth import AuthTest from tests.test_transport import TransportTest +from tests.test_ssh_exception import NoValidConnectionsErrorTest from tests.test_client import SSHClientTest -from test_client import SSHClientTest +from test_client import SSHClientTest # XXX why shadow the above import? from test_gssapi import GSSAPITest from test_ssh_gss import GSSAuthTest from test_kex_gss import GSSKexTest @@ -156,6 +157,7 @@ def main(): if options.use_transport: suite.addTest(unittest.makeSuite(AuthTest)) suite.addTest(unittest.makeSuite(TransportTest)) + suite.addTest(unittest.makeSuite(NoValidConnectionsErrorTest)) suite.addTest(unittest.makeSuite(SSHClientTest)) if options.use_sftp: suite.addTest(unittest.makeSuite(SFTPTest)) -- cgit v1.2.3