From 6fc1c6fd7b3cfab8bd576e8249ea8fe542430a71 Mon Sep 17 00:00:00 2001 From: Omer Ullman Argov <118735753+omera-nv@users.noreply.github.com> Date: Fri, 27 Jun 2025 15:34:44 +0300 Subject: [PATCH] [fix][ci] correct unittests test prefix (#5547) Signed-off-by: Omer Ullman Argov <118735753+omera-nv@users.noreply.github.com> --- tests/integration/defs/test_unittests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/defs/test_unittests.py b/tests/integration/defs/test_unittests.py index ec18e7b539..83aa0275d5 100644 --- a/tests/integration/defs/test_unittests.py +++ b/tests/integration/defs/test_unittests.py @@ -71,9 +71,9 @@ def test_unittests_v2(llm_root, llm_venv, case: str, output_dir, request): my_test_prefix = request.config.getoption("--test-prefix") if my_test_prefix: - test_prefix = f"{my_test_prefix}/unittests" + test_prefix = f"{my_test_prefix}/unittest" else: - test_prefix = "" + test_prefix = "unittest" num_workers = 1