summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2015-11-06 15:11:54 -0800
committerJeff Forcier <jeff@bitprophet.org>2015-11-06 15:11:54 -0800
commit1b086d150086af027810c0846298d1550aa59268 (patch)
tree6edb76311b5bd476dcc39766bf43a764c0b8c106
parent1258d9e1bb856ef14ee18ad4bcd52c31cf9f268c (diff)
parentba0b12fb09f7334e930fc2b5a02d7e7824695627 (diff)
Merge branch '1.15' into 1.16
-rw-r--r--tests/test_client.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 04cab439..f71efd5a 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -193,12 +193,18 @@ class SSHClientTest (unittest.TestCase):
(['dss', 'rsa', 'ecdsa'], ['dss']), # Try ECDSA but fail
(['rsa', 'ecdsa'], ['ecdsa']), # ECDSA success
):
- self._test_connection(
- key_filename=[
- test_path('test_{0}.key'.format(x)) for x in attempt
- ],
- allowed_keys=[types_[x] for x in accept],
- )
+ try:
+ self._test_connection(
+ key_filename=[
+ test_path('test_{0}.key'.format(x)) for x in attempt
+ ],
+ allowed_keys=[types_[x] for x in accept],
+ )
+ finally:
+ # Clean up to avoid occasional gc-related deadlocks.
+ # TODO: use nose test generators after nose port
+ self.tearDown()
+ self.setUp()
def test_multiple_key_files_failure(self):
"""