diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-04-24 14:17:10 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-04-24 14:17:10 -0700 |
commit | ca21c9f648590e38e52fa8799f1d6f074d0055de (patch) | |
tree | 000b8d92a7abefde1c7cf848574dad2d3bc04153 /test.py | |
parent | 884e1f72e64b37be5f15cf9962e31bb1b028cbf8 (diff) | |
parent | 972619dc208768be57b23ece4ac31e642bc72620 (diff) |
Merge branch 'master' into 394-int
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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)) |