-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support building DAGs out of topologically unsorted YAML files
Closes: #225
- Loading branch information
Showing
3 changed files
with
68 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
def example_task_mapping(): | ||
return [[1], [2], [3]] | ||
def make_list(): | ||
return [[1], [2], [3], [4]] | ||
|
||
|
||
def expand_task(x, test_id): | ||
print(test_id) | ||
print(x) | ||
return [x] | ||
def consume_value(expanded_param, fixed_param): | ||
print(fixed_param) | ||
print(expanded_param) | ||
return [expanded_param] |