From 2f9e211bd097fdd2f83df540aa494d924df01c7d Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 25 Jul 2022 14:46:56 +0200 Subject: UTI: code clean-up Change-Id: I492370e20ad0e7431aaf86af618ed874104c4ad5 Signed-off-by: Tibor Frank --- resources/tools/dash/app/pal/news/tables.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'resources/tools/dash/app/pal/news/tables.py') diff --git a/resources/tools/dash/app/pal/news/tables.py b/resources/tools/dash/app/pal/news/tables.py index 6272814165..1a6c7d2556 100644 --- a/resources/tools/dash/app/pal/news/tables.py +++ b/resources/tools/dash/app/pal/news/tables.py @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -""" +"""The tables with news. """ import pandas as pd @@ -21,7 +21,16 @@ from ..utils.constants import Constants as C def table_news(data: pd.DataFrame, job: str) -> list: - """ + """Generates the tables with news: + 1. Falied tests from the last run + 2. Regressions and progressions calculated from the last C.NEWS_TIME_PERIOD + days. + + :param data: Trending data with calculated annomalies to be displayed in the + tables. + :param job: The job name. + :type data: pandas.DataFrame + :type job: str """ job_data = data.loc[(data["job"] == job)] -- cgit 1.2.3-korg