X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fspecification_parser.py;h=ce821f2bded096199adf7de0486199268c814384;hb=2f87683cf1e9feaac810a632aba78a9689d9224b;hp=a94d09f3fab5d61484fbdc6c5545aa3db756e970;hpb=c763cfcb064e4f4acf6b8309b08d3800b9bd5331;p=csit.git diff --git a/resources/tools/presentation/specification_parser.py b/resources/tools/presentation/specification_parser.py index a94d09f3fa..ce821f2bde 100644 --- a/resources/tools/presentation/specification_parser.py +++ b/resources/tools/presentation/specification_parser.py @@ -441,6 +441,9 @@ class Specification: self._specification[u"environment"][u"limits"] = \ self._cfg_yaml[idx].get(u"limits", None) + self._specification[u"environment"][u"frequency"] = \ + self._cfg_yaml[idx].get(u"frequency", dict()) + self._specification[u"environment"][u"urls"] = \ self._cfg_yaml[idx].get(u"urls", None) @@ -666,9 +669,16 @@ class Specification: table[u"columns"][i][u"data-replacement"] = \ self.data_sets[data_set] + if table.get(u"lines", None): + for i in range(len(table[u"lines"])): + data_set = table[u"lines"][i].get(u"data-set", None) + if isinstance(data_set, str): + table[u"lines"][i][u"data-set"] = \ + self.data_sets[data_set] + except KeyError: raise PresentationError( - f"Wrong data set used in {table.get(u'title', u'')}." + f"Wrong set '{data_set}' used in {table.get(u'title', u'')}." ) self._specification[u"tables"].append(table)