From f17e3476fff578de2be630f3dcd5513d61dcbac6 Mon Sep 17 00:00:00 2001 From: Sofi Azcoaga Date: Tue, 30 Apr 2024 15:34:43 -0300 Subject: [PATCH] remove comment --- scripts/run-tests.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/run-tests.py b/scripts/run-tests.py index 04dd558e..eba5931c 100644 --- a/scripts/run-tests.py +++ b/scripts/run-tests.py @@ -48,7 +48,7 @@ def run_unit_tests(root): def run_integration_tests(detector, root): start_time = time.time() - returncode, stdout, stderr = run_subprocess( + returncode, stdout, _ = run_subprocess( [ "cargo", "scout-audit", @@ -62,8 +62,6 @@ def run_integration_tests(detector, root): ) if stdout is None: - for line in stderr.splitlines(): - print(f" error: {line}") print( f"{RED}Failed to run integration tests in {root} - Metadata returned empty.{ENDC}" )