File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ Changes
1919* Added SSH agent forwarding to native client, defaults to on as per paramiko client - ``forward_ssh_agent `` keyword parameter.
2020* Windows wheels switched to OpenSSL back end for native client.
2121* Windows wheels include zlib and have compression enabled for native client.
22+ * Added OSX 10.13 wheel build.
2223
2324Fixes
2425------
Original file line number Diff line number Diff line change 3030pssh_logger .setLevel (logging .DEBUG )
3131logging .basicConfig ()
3232
33+
3334class ForwardTestCase (unittest .TestCase ):
3435
3536 @classmethod
3637 def setUpClass (cls ):
3738 _mask = int ('0600' ) if version_info <= (2 ,) else 0o600
3839 os .chmod (PKEY_FILENAME , _mask )
39- call ('ssh-add %s' % PKEY_FILENAME , shell = True )
40+ if call ('ssh-add %s' % PKEY_FILENAME , shell = True ) != 1 :
41+ raise unittest .SkipTest ("No agent available." )
4042 cls .server = OpenSSHServer ()
4143 cls .server .start_server ()
4244 cls .host = '127.0.0.1'
You can’t perform that action at this time.
0 commit comments