fix(perpatch): Do not repeat test name 07/40507/3
authorVratko Polak <vrpolak@cisco.com>
Wed, 13 Mar 2024 13:00:46 +0000 (14:00 +0100)
committerVratko Polak <vrpolak@cisco.com>
Tue, 26 Mar 2024 09:11:56 +0000 (09:11 +0000)
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>
resources/tools/integrated/compare_perpatch.py

index 9b04b7b..ab1a557 100644 (file)
@@ -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}")