From 1efaaef03039b39bfe86af0e1d6004d200922fc7 Mon Sep 17 00:00:00 2001 From: Jaime Silvela Date: Fri, 31 May 2024 09:59:28 +0200 Subject: [PATCH] chore: nits Signed-off-by: Jaime Silvela --- README.md | 4 ++-- summarize_test_results.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d75ef97..cd0c191 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ Up to three outputs might be produced: - `thermometer`: this will contain stand-alone text with a color-coded list of test metrics that can serve as an overview of the state of the test suite on CI/CD. This is generated on every execution of Ciclops. - It is *always* generated. - `alerts`: this will contain stand-alone text with systematic failures detected by CIclops. It is meant to enable further steps in the calling @@ -106,7 +105,8 @@ There are two advanced cases we want to call attention to: color-coded overview of the test health. This thermometer is included in the GitHub summary, and in addition, is exported as an output in plain text, which can be sent via chatops. - In addition, Ciclops will create a series of alerts when systematic failures are detected. + In addition, Ciclops will create a series of alerts when systematic failures + are detected. By "systematic", we mean cases such as: - all test combinations have failed diff --git a/summarize_test_results.py b/summarize_test_results.py index 441e8e5..cfbd69c 100644 --- a/summarize_test_results.py +++ b/summarize_test_results.py @@ -632,6 +632,7 @@ def format_thermometer(summary, embed=True, file_out=None): """ output = "" + # we only test the "by_platform" metric for the thermometer, at the moment for metric in ["by_platform"]: output += compute_thermometer_on_metric(summary, metric, embed)