[fix][ci] correct unittests test prefix (#5547)

Signed-off-by: Omer Ullman Argov <118735753+omera-nv@users.noreply.github.com>
This commit is contained in:
Omer Ullman Argov 2025-06-27 15:34:44 +03:00 committed by GitHub
parent a608b00d38
commit 6fc1c6fd7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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