diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-05-02 16:26:56 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-05-02 16:31:59 +0200 |
commit | 2037f33d0edf9464d11f936e6290f92008c5e798 (patch) | |
tree | 6b951756bd122efdf8c1c9e8cd152e96e382e4aa /resources/tools/presentation | |
parent | 86c46a9529acd5e204961c67ee2f5df01730186e (diff) |
Trending: ignore list for the dashboard
Change-Id: Ibdb134517097bc9cacdcb75a11dda59290ab4e21
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation')
-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 d71db28faf..bbe521948e 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], |