-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add BLOCK_RELATIVE time tag type. * Add note construct. * add valid note test * update setup.py to require jsonschema, and update owner name * Update version in package.json * add note as allowed step type * updated tests to add BLOCK_RELATIVE * updated versions * Add missing tag to test * Fxi note description * add 'jsonschema' as a required package * updated schema so tag is required for everyting but COMMAND_COMPLETE * update test to include missing tag * update test to include cases with missing tags
- Loading branch information
1 parent
c153e91
commit a86786f
Showing
7 changed files
with
156 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"id": "time_missing_type", | ||
"metadata": {}, | ||
"steps": [ | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Epoch-relative activate step for test.mod into engine 2 with missing time type.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "tag": "00:00:01.000" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Command-relative activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "COMMAND_RELATIVE" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Absolute activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "ABSOLUTE" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Block-relative activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "BLOCK_RELATIVE" }, | ||
"type": "activate" | ||
}, | ||
{ | ||
"args": [ | ||
{ "type": "number", "value": 30 } | ||
], | ||
"description": "Epoch-relative activate step for test.mod into engine 2 with missing time tag.", | ||
"engine": 2, | ||
"epoch": "TEST_EPOCH", | ||
"sequence": "d:/eng/test.mod", | ||
"time": { "type": "EPOCH_RELATIVE" }, | ||
"type": "activate" | ||
} | ||
] | ||
} |
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