diff --git a/tests/llm/accuracy_conformance.py b/tests/llm/accuracy_conformance.py index 4c6a1e140e597b..16d42fbd24a18b 100644 --- a/tests/llm/accuracy_conformance.py +++ b/tests/llm/accuracy_conformance.py @@ -33,8 +33,8 @@ "INT4": 0.05, } -tmp_dir = tempfile.mkdtemp() - +tmp_dir = tempfile.mkdtemp(dir=os.getcwd()) +logger.info(f"Created temporary directory: {tmp_dir}") def init_test_scope(): test_scope = [] @@ -86,7 +86,7 @@ def init_test_scope(): def teardown_module(): - logger.info("Remove models") + logger.info(f"Deleting temporary directory: {tmp_dir}") shutil.rmtree(tmp_dir)