diff options
Diffstat (limited to 'resources/tools/presentation_new/specification_parser.py')
-rw-r--r-- | resources/tools/presentation_new/specification_parser.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/resources/tools/presentation_new/specification_parser.py b/resources/tools/presentation_new/specification_parser.py index 83838d8212..97662899e3 100644 --- a/resources/tools/presentation_new/specification_parser.py +++ b/resources/tools/presentation_new/specification_parser.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Cisco and/or its affiliates. +# Copyright (c) 2019 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -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): |