From b54dc717ae7ba23913a5cc6be4c4631fb620e6bc Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Thu, 26 Mar 2020 08:26:07 +0100 Subject: PAL: Local mode uses xml file name as a build number Change-Id: Id4a26ac588883d917595ea45fcaabd16d89ded1f Signed-off-by: Tibor Frank (cherry picked from commit 4504d3cec6b801122d4f194284696601fbc3b492) --- resources/tools/presentation/input_data_parser.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'resources/tools/presentation/input_data_parser.py') diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 987b9964bc..cd9c1a248d 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -1594,6 +1594,11 @@ class InputData: if not isfile(local_file): raise PresentationError(f"The file {local_file} does not exist.") + try: + build_nr = int(local_file.split(u"/")[-1].split(u".")[0]) + except (IndexError, ValueError): + pass + build = { u"build": build_nr, u"status": u"failed", -- cgit 1.2.3-korg