diff --git a/tests/memory_tests/scripts/run_memorytest.py b/tests/memory_tests/scripts/run_memorytest.py index fc585b37241..c4ce69b43b2 100644 --- a/tests/memory_tests/scripts/run_memorytest.py +++ b/tests/memory_tests/scripts/run_memorytest.py @@ -75,7 +75,7 @@ def run_memorytest(args: dict, log=None): stats = {} for run_iter in range(args["niter"]): tmp_stats_path = tempfile.NamedTemporaryFile().name - retcode, msg = cmd_exec(cmd_common + ["-s", str(tmp_stats_path)], timeout=60, log=log) + retcode, msg = cmd_exec(cmd_common + ["-s", str(tmp_stats_path)], log=log) if retcode != 0: log.error("Run of executable '{}' failed with return code '{}'. Error: {}\n" "Statistics aggregation is skipped.".format(args["executable"], retcode, msg)) diff --git a/tests/memory_tests/test_runner/conftest.py b/tests/memory_tests/test_runner/conftest.py index 78774372039..202647682e1 100644 --- a/tests/memory_tests/test_runner/conftest.py +++ b/tests/memory_tests/test_runner/conftest.py @@ -233,9 +233,6 @@ def omz_models_conversion(instance, request): return_code, _ = cmd_exec(cmd, log=logging) assert return_code == 0, "Converting OMZ models has failed!" - instance["orig_instance"]["model"]["framework"] = model_info["framework"] - instance["orig_instance"]["model"]["path"] = sub_model_path - instance["instance"]["model"]["cache_path"] = model_out_path instance["instance"]["model"]["irs_out_path"] = model_irs_out_path diff --git a/tests/memory_tests/test_runner/pytest.ini b/tests/memory_tests/test_runner/pytest.ini new file mode 100644 index 00000000000..93b0d02a90e --- /dev/null +++ b/tests/memory_tests/test_runner/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +timeout = 200