This commit is contained in:
Max Kainov 2024-03-21 13:44:08 +00:00
parent ef0fa1963d
commit e4556ae6c1
3 changed files with 6 additions and 8 deletions

View File

@ -387,8 +387,8 @@ upgrade_check_digest = DigestConfig(
integration_check_digest = DigestConfig(
include_paths=[
"./tests/ci/integration_test_check.py",
"./tests/ci/ci_runner.py",
"./tests/integration",
"./tests/ci/integration_tests_runner.py",
"./tests/integration/",
],
exclude_files=[".md"],
docker=IMAGES.copy(),

View File

@ -26,7 +26,7 @@ from report import (
)
from stopwatch import Stopwatch
import ci_runner
import integration_tests_runner as runner
def get_json_params_dict(
@ -207,8 +207,6 @@ def main():
json_params.write(params_text)
logging.info("Parameters file %s is written: %s", json_path, params_text)
output_path_log = result_path / "main_script_log.txt"
for k, v in my_env.items():
os.environ[k] = v
logging.info(
@ -219,10 +217,10 @@ def main():
)
try:
ci_runner.run()
runner.run()
except Exception as e:
logging.error("Exception: %s", e)
state, description, test_results, additional_logs = ERROR, "no description", [TestResult("infrastructure error", ERROR, stopwatch.duration_seconds)], [] # type: ignore
state, description, test_results, additional_logs = ERROR, "infrastructure error", [TestResult("infrastructure error", ERROR, stopwatch.duration_seconds)], [] # type: ignore
else:
state, description, test_results, additional_logs = process_results(result_path)
@ -232,7 +230,7 @@ def main():
status=state,
start_time=stopwatch.start_time_str,
duration=stopwatch.duration_seconds,
additional_files=[output_path_log] + additional_logs,
additional_files=additional_logs,
).dump(to_file=args.report_to_file if args.report_to_file else None)
if state != SUCCESS: