diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-05-02 16:26:56 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-05-02 14:28:49 +0000 |
commit | cb4583dab660884dc2c60984e157031931073db6 (patch) | |
tree | d932396e806668243c68c05272c99145b3f85aaf | |
parent | 9d9b972b994fc8da54c47e3e9a2ef284776c3f52 (diff) |
Trending: ignore list for the dashboard
Change-Id: Ibdb134517097bc9cacdcb75a11dda59290ab4e21
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 120d39b597..36933cc0e5 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -745,7 +745,7 @@ def table_performance_trending_dashboard(table, input_data): for job, builds in table["data"].items(): for build in builds: for tst_name, tst_data in data[job][str(build)].iteritems(): - if tst_name in table["ignore-list"]: + if tst_name.lower() in table["ignore-list"]: continue if tbl_dict.get(tst_name, None) is None: name = "{0}-{1}".format(tst_data["parent"].split("-")[0], |