Skip to content

Commit

Permalink
Fix framework test failures.
Browse files Browse the repository at this point in the history
Some other fix caused the yaml example tool to load in the framework and api tests again after a long regression, this in turn caused a more recent regression to pop out in the framework test suite. This fixes that, thanks for the heads up @martenson.
  • Loading branch information
jmchilton committed Sep 28, 2015
1 parent bd3e86c commit d3b5354
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/tools/parser/yaml.py
Expand Up @@ -156,6 +156,8 @@ def _parse_test(i, test_dict):
_ensure_has(attributes, defaults)

test_dict["outputs"] = new_outputs
# TODO: implement output collections for YAML tools.
test_dict["output_collections"] = []
test_dict["command"] = __to_test_assert_list( test_dict.get( "command", [] ) )
test_dict["stdout"] = __to_test_assert_list( test_dict.get( "stdout", [] ) )
test_dict["stderr"] = __to_test_assert_list( test_dict.get( "stderr", [] ) )
Expand Down

0 comments on commit d3b5354

Please sign in to comment.