Update functional_test_check.py

This commit is contained in:
alesapin 2021-10-27 13:23:18 +03:00 committed by GitHub
parent cb61f0daf9
commit 57c30cdaca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -321,7 +321,7 @@ if __name__ == "__main__":
logging.info("Going to run func tests: %s", run_command)
with open(run_log_path, 'w') as log:
retcode = subprocess.Popen(run_cmd, shell=True, stderr=log, stdout=log).wait()
retcode = subprocess.Popen(run_command, shell=True, stderr=log, stdout=log).wait()
if retcode == 0:
logging.info("Run successfully")
else: