aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-01-22 13:04:01 +0100
committerTibor Frank <tifrank@cisco.com>2019-01-22 12:05:38 +0000
commit2b7ded8d1d05c605d2e19072551306db4fe9e62e (patch)
tree0c876b102462f35d390e09a666fc960eac26d81d
parentf9e4f3da37eb6e20ecb21fce3f36a90f6377ba1f (diff)
CSIT-1404: Add data pre-processing for "service density" graphs
Change-Id: If9c1a9ee3cf21640e2153b52693903c29791c7ce Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit fcbcfb9aa1bd57fbf187b92a6b1de80899209640)
-rw-r--r--resources/tools/presentation/generator_plots.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py
index 79ccf617cb..dd6c50d1d8 100644
--- a/resources/tools/presentation/generator_plots.py
+++ b/resources/tools/presentation/generator_plots.py
@@ -1097,7 +1097,7 @@ def plot_service_density_heatmap(plot, input_data):
"""
REGEX_CN = re.compile(r'^(\d*)C(\d*)N$')
-
+
txt_chains = list()
txt_nodes = list()
vals = dict()
@@ -1109,7 +1109,7 @@ def plot_service_density_heatmap(plot, input_data):
if data is None:
logging.error("No data.")
return
-
+
for job in data:
for build in job:
for test in build: