aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-04-10 09:53:26 +0200
committerTibor Frank <tifrank@cisco.com>2018-04-10 07:56:21 +0000
commit6fbda276a49c750ab985424d946f4881c497ba5d (patch)
tree41272de5f85859d60c64a5bde4a7657d04cd79dc
parent0a16a7059b75e8f1a6c5a0e1ad3b46d97f5a1e77 (diff)
PAL Trending: Add x710 tests
Change-Id: I687c1e5f3168ed4b170916f1fb6390a0dad303b1 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 16ddaaed1bdaba380310a025e14929e7b3406db9)
-rw-r--r--docs/cpta/indices.rst4
-rw-r--r--resources/tools/presentation/generator_CPTA.py4
-rw-r--r--resources/tools/presentation/pal.py82
3 files changed, 47 insertions, 43 deletions
diff --git a/docs/cpta/indices.rst b/docs/cpta/indices.rst
new file mode 100644
index 0000000000..6dd08416cb
--- /dev/null
+++ b/docs/cpta/indices.rst
@@ -0,0 +1,4 @@
+Indices and tables
+==================
+
+* :ref:`genindex`
diff --git a/resources/tools/presentation/generator_CPTA.py b/resources/tools/presentation/generator_CPTA.py
index c8874593bc..a2e9ee647d 100644
--- a/resources/tools/presentation/generator_CPTA.py
+++ b/resources/tools/presentation/generator_CPTA.py
@@ -368,8 +368,8 @@ def _generate_all_charts(spec, input_data):
builds_lst = list()
for build in range(builds[0], builds[-1] + 1):
- if spec.input[job_name][str(build)]["status"] != "failed" and \
- spec.input[job_name][build]["status"] != "not found":
+ status = spec.input["builds"][job_name][str(build)]["status"]
+ if status != "failed" and status != "not found":
builds_lst.append(str(build))
print(builds_lst)
# Get "build ID": "date" dict:
diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py
index 98642c898c..a43082df0b 100644
--- a/resources/tools/presentation/pal.py
+++ b/resources/tools/presentation/pal.py
@@ -87,48 +87,48 @@ def main():
return 1
ret_code = 0
- try:
- env = Environment(spec.environment, args.force)
- env.set_environment()
-
- if spec.is_debug:
- if spec.debug["input-format"] == "zip":
- unzip_files(spec)
- else:
- download_data_files(spec)
-
- prepare_static_content(spec)
-
- data = InputData(spec)
- data.read_data()
-
- generate_tables(spec, data)
- generate_plots(spec, data)
- generate_files(spec, data)
-
- if spec.output["output"] == "report":
- generate_report(args.release, spec)
- logging.info("Successfully finished.")
- elif spec.output["output"] == "CPTA":
- sys.stdout.write(generate_cpta(spec, data))
- logging.info("Successfully finished.")
- else:
- logging.critical("The output '{0}' is not supported.".
- format(spec.output["output"]))
- ret_code = 1
-
- except (KeyError, ValueError, PresentationError) as err:
- logging.info("Finished with an error.")
- logging.critical(str(err))
- ret_code = 1
- except Exception as err:
- logging.info("Finished with an unexpected error.")
- logging.critical(str(err))
+ #try:
+ env = Environment(spec.environment, args.force)
+ env.set_environment()
+
+ if spec.is_debug:
+ if spec.debug["input-format"] == "zip":
+ unzip_files(spec)
+ else:
+ download_data_files(spec)
+
+ prepare_static_content(spec)
+
+ data = InputData(spec)
+ data.read_data()
+
+ generate_tables(spec, data)
+ generate_plots(spec, data)
+ generate_files(spec, data)
+
+ if spec.output["output"] == "report":
+ generate_report(args.release, spec)
+ logging.info("Successfully finished.")
+ elif spec.output["output"] == "CPTA":
+ sys.stdout.write(generate_cpta(spec, data))
+ logging.info("Successfully finished.")
+ else:
+ logging.critical("The output '{0}' is not supported.".
+ format(spec.output["output"]))
ret_code = 1
- finally:
- if spec is not None and not spec.is_debug:
- clean_environment(spec.environment)
- return ret_code
+
+ # except (KeyError, ValueError, PresentationError) as err:
+ # logging.info("Finished with an error.")
+ # logging.critical(str(err))
+ # ret_code = 1
+ # except Exception as err:
+ # logging.info("Finished with an unexpected error.")
+ # logging.critical(str(err))
+ # ret_code = 1
+ # finally:
+ # if spec is not None and not spec.is_debug:
+ # clean_environment(spec.environment)
+ # return ret_code
if __name__ == '__main__':