diff options
author | Vratko Polak <vrpolak@cisco.com> | 2024-03-13 14:00:46 +0100 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2024-03-26 09:11:56 +0000 |
commit | 7f981b43bb119580fb624e0f85bf162fab1058e2 (patch) | |
tree | e7711dc260e5de39da243bf194b30b588b08a532 | |
parent | 83dc3b1b116725fd8b76890df275f868d7414c30 (diff) |
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 <vrpolak@cisco.com>
-rw-r--r-- | resources/tools/integrated/compare_perpatch.py | 3 |
1 files changed, 1 insertions, 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}") |