summaryrefslogtreecommitdiffhomepage
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test.py b/test.py
index 2decf412..b8b76d42 100755
--- a/test.py
+++ b/test.py
@@ -31,6 +31,7 @@ sys.path.append('tests/')
from test_message import MessageTest
from test_file import BufferedFileTest
from test_pkey import KeyTest
+from test_kex import KexTest
from test_transport import TransportTest
from test_sftp import SFTPTest
@@ -72,6 +73,7 @@ suite.addTest(unittest.makeSuite(MessageTest))
suite.addTest(unittest.makeSuite(BufferedFileTest))
if options.use_pkey:
suite.addTest(unittest.makeSuite(KeyTest))
+suite.addTest(unittest.makeSuite(KexTest))
suite.addTest(unittest.makeSuite(TransportTest))
if options.use_sftp:
suite.addTest(unittest.makeSuite(SFTPTest))