diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-04-24 14:10:33 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-04-24 14:10:33 -0700 |
commit | 63621c973e89762007e47b8ec3366f73fc556dd6 (patch) | |
tree | 9640e2bd900b1b572e9acb85f2e39c998c895c5a /test.py | |
parent | 37ff28d98ce6e25331ade80bbce2f26c21c20229 (diff) | |
parent | e2206bc9a6ec2d4eae316a12fef50fc898d6db12 (diff) |
Merge branch '1.16'
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)) |