From 7f981b43bb119580fb624e0f85bf162fab1058e2 Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Wed, 13 Mar 2024 14:00:46 +0100 Subject: [PATCH] fix(perpatch): Do not repeat test name When searching for a specific test, it is confusing to see the name twice, first time close to previous test classification. Change-Id: I43d838090f89d23af9da1dc93f9dd1946aebae75 Signed-off-by: Vratko Polak --- resources/tools/integrated/compare_perpatch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/tools/integrated/compare_perpatch.py b/resources/tools/integrated/compare_perpatch.py index 9b04b7bdea..ab1a557560 100644 --- a/resources/tools/integrated/compare_perpatch.py +++ b/resources/tools/integrated/compare_perpatch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Cisco and/or its affiliates. +# Copyright (c) 2024 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -77,7 +77,6 @@ def main() -> int: current_aggregate[name].extend(current_results[name]) exit_code = 0 for name in test_names: - print(f"Test name: {name}") parent_values = parent_aggregate[name] current_values = current_aggregate[name] print(f"Time-ordered MRR values for parent build: {parent_values}") -- 2.16.6