diff --git a/jenkins/L0_Test.groovy b/jenkins/L0_Test.groovy index 9bc1ead4912..2619a86a08e 100644 --- a/jenkins/L0_Test.groovy +++ b/jenkins/L0_Test.groovy @@ -800,7 +800,7 @@ def getPytestBaseCommandLine( portEnvVars, pytestUtil, "pytest", - "-v", + "-vv", testFilter[(DETAILED_LOG)] ? "-s" : "", "--timeout-method=thread", "--apply-test-list-correction", diff --git a/tests/integration/defs/test_unittests.py b/tests/integration/defs/test_unittests.py index d2cd80692cf..707426f8227 100644 --- a/tests/integration/defs/test_unittests.py +++ b/tests/integration/defs/test_unittests.py @@ -126,8 +126,8 @@ def test_unittests_v2(llm_root, llm_venv, case: str, output_dir, request): f'results-sub-unittests-{case_fn}.xml') command = [ - '-m', 'pytest', ignore_opt, "-v", "--tb=short", "-rF", "--timeout=2400", - "--timeout-method=thread" + '-m', 'pytest', ignore_opt, "-vv", "--tb=short", "-rF", + "--timeout=2400", "--timeout-method=thread" ] if test_prefix: command += [f"--test-prefix={test_prefix}"]