From ba56c875666427db53a20b11a66eac276f9c13c2 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Wed, 30 Nov 2016 18:06:35 -0500 Subject: [PATCH] Add SSH_AUTH_SOCK to default env So ssh-agent works when using locally. --- test/runner/lib/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runner/lib/util.py b/test/runner/lib/util.py index f7544c4b19e..4868a87634a 100644 --- a/test/runner/lib/util.py +++ b/test/runner/lib/util.py @@ -189,6 +189,7 @@ def common_environment(): optional = ( 'HTTPTESTER', + 'SSH_AUTH_SOCK' ) env.update(pass_vars(required=required, optional=optional))