aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_tables.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-08-02 11:13:58 +0200
committerTibor Frank <tifrank@cisco.com>2019-08-02 11:28:18 +0200
commit95a6f931ea80e2f6cb68a04cccb7ff1016902765 (patch)
tree51c67cb79cb9a5fbcf791f9297ed4a502abc0f48 /resources/tools/presentation/generator_tables.py
parent8ac5ba53849699185092d0480cdac0cfaff5e618 (diff)
Trending: Add 8 big input files
Change-Id: I9891c9589014be04fa69973e092fdf8b9926a56f Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r--resources/tools/presentation/generator_tables.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 66a0161912..3ab887070f 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -682,7 +682,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.lower() in table.get("ignore-list", False):
+ if tst_name.lower() in table.get("ignore-list", list()):
continue
if tbl_dict.get(tst_name, None) is None:
groups = re.search(REGEX_NIC, tst_data["parent"])
@@ -1074,7 +1074,7 @@ def table_failed_tests(table, input_data):
for build in builds:
build = str(build)
for tst_name, tst_data in data[job][build].iteritems():
- if tst_name.lower() in table.get("ignore-list", False):
+ if tst_name.lower() in table.get("ignore-list", list()):
continue
if tbl_dict.get(tst_name, None) is None:
groups = re.search(REGEX_NIC, tst_data["parent"])