From a582fc4acfe44277b0ac41fa254ed051ec5cc1ea Mon Sep 17 00:00:00 2001 From: alesapin Date: Sat, 6 Nov 2021 17:27:11 +0300 Subject: [PATCH] Followup --- tests/ci/integration_test_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/integration_test_check.py b/tests/ci/integration_test_check.py index 8849bec79ed..20b20408493 100644 --- a/tests/ci/integration_test_check.py +++ b/tests/ci/integration_test_check.py @@ -285,7 +285,7 @@ if __name__ == "__main__": output_path_log = os.path.join(result_path, "main_script_log.txt") runner_path = os.path.join(repo_path, "tests/integration", "ci-runner.py") - run_command = f"sudo {runner_path} | tee {output_path_log}" + run_command = f"sudo -E {runner_path} | tee {output_path_log}" with open(output_path_log, 'w', encoding='utf-8') as log: with subprocess.Popen(run_command, shell=True, stderr=log, stdout=log, env=my_env) as process: