From f26e94be3745f56db330ce9db0736f7c61d1c805 Mon Sep 17 00:00:00 2001 From: Michael Lumish Date: Fri, 18 Sep 2020 12:26:10 -0700 Subject: [PATCH] Fix run_xds_tests.py formatting --- tools/run_tests/run_xds_tests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/run_tests/run_xds_tests.py b/tools/run_tests/run_xds_tests.py index 51fd022c13f..ddbcd675c95 100755 --- a/tools/run_tests/run_xds_tests.py +++ b/tools/run_tests/run_xds_tests.py @@ -1801,6 +1801,11 @@ try: logger.debug('running client: %s', client_cmd_formatted) try: # We invoke the client using bash to avoid https://github.com/nvm-sh/nvm/issues/1866 + client_process = subprocess.Popen( + ['/bin/bash', '-i', '-c', client_cmd_formatted], + env=client_env, + stderr=subprocess.STDOUT, + stdout=test_log_file) client_process = subprocess.Popen(['/bin/bash', '-i', '-c', client_cmd_formatted], env=client_env, stderr=subprocess.STDOUT,