diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-01-03 10:30:30 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-01-04 15:09:41 +0000 |
commit | 6c3d971c8b529d094f7c7355e685ea5ab63904e5 (patch) | |
tree | 51f8a5f4ed3e973d8facd8b8866c03ff2b31bd0b /resources/tools/presentation/specification_parser.py | |
parent | cebbe0a29e2c6329c54d09a77a64e874703c7d4f (diff) |
Trending: Remove unneeded tests from Dashboard
Change-Id: I0f57735bcc578b42994721ca88dc1bb60af475de
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/specification_parser.py')
-rw-r--r-- | resources/tools/presentation/specification_parser.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/tools/presentation/specification_parser.py b/resources/tools/presentation/specification_parser.py index 83838d8212..c149e3e51c 100644 --- a/resources/tools/presentation/specification_parser.py +++ b/resources/tools/presentation/specification_parser.py @@ -392,6 +392,12 @@ class Specification(object): except KeyError: self._specification["environment"]["build-dirs"] = None + try: + self._specification["environment"]["testbeds"] = \ + self._cfg_yaml[idx]["testbeds"] + except KeyError: + self._specification["environment"]["testbeds"] = None + logging.info("Done.") def _parse_configuration(self): |