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
19
19
* Added SSH agent forwarding to native client, defaults to on as per paramiko client - ``forward_ssh_agent `` keyword parameter.
20
20
* Windows wheels switched to OpenSSL back end for native client.
21
21
* Windows wheels include zlib and have compression enabled for native client.
22
+ * Added OSX 10.13 wheel build.
22
23
23
24
Fixes
24
25
------
Original file line number Diff line number Diff line change 30
30
pssh_logger .setLevel (logging .DEBUG )
31
31
logging .basicConfig ()
32
32
33
+
33
34
class ForwardTestCase (unittest .TestCase ):
34
35
35
36
@classmethod
36
37
def setUpClass (cls ):
37
38
_mask = int ('0600' ) if version_info <= (2 ,) else 0o600
38
39
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." )
40
42
cls .server = OpenSSHServer ()
41
43
cls .server .start_server ()
42
44
cls .host = '127.0.0.1'
You can’t perform that action at this time.
0 commit comments