-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Generation of folder tree for deployment phase - Added timing to some more things - Cleanup, logging, and comments
- Loading branch information
1 parent
0713862
commit 5f73eb6
Showing
7 changed files
with
97 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,12 +52,14 @@ | |
|
||
from automation.interface import Interface | ||
from automation.parser import parse_file, verify_syntax | ||
from automation.utils import time_execution | ||
|
||
__version__ = "0.6.0" | ||
__version__ = "0.6.1" | ||
__author__ = "Christopher Goes" | ||
__email__ = "<[email protected]>" | ||
|
||
|
||
@time_execution | ||
def main(): | ||
if args["--spec"]: | ||
spec = check_syntax(args["--spec"]) | ||
|
@@ -85,6 +87,7 @@ def main(): | |
logging.error("Invalid arguments. Argument dump:\n%s", str(args)) | ||
|
||
|
||
@time_execution | ||
def check_syntax(specfile_path): | ||
""" | ||
Checks the syntax of a specification file | ||
|