Merge pull request #38548 from excitoon-favorites/ci-integration-tests-test

Don't spoil return code of integration tests runner with redundant tee
This commit is contained in:
Mikhail f. Shiryaev 2022-06-29 11:18:53 +02:00 committed by GitHub
commit 80e7abd0fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,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 -E {runner_path} | tee {output_path_log}"
run_command = f"sudo -E {runner_path}"
logging.info("Going to run command: `%s`", run_command)
logging.info(
"ENV parameters for runner:\n%s",