Initial engine framework

This commit adds the initial engine framework for Deckhand. Included
is the logic for parsing YAML files as well as validating them and
doing forward substitution as specified by the YAML file.

This commit also includes unit tests for the framework changes.
This commit is contained in:
Felipe Monteiro
2017-07-08 23:34:44 +01:00
parent eabd51de97
commit 695ef09f72
18 changed files with 414 additions and 18 deletions

View File

@@ -18,4 +18,4 @@ class ApiError(Exception):
class InvalidFormat(ApiError):
pass
"""The YAML file is incorrectly formatted and cannot be read."""