Skip to content

Commit

Permalink
Merge branch 'release_16.10' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Jan 6, 2017
2 parents c9a876e + 4d73dfc commit 387c08b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions lib/galaxy/tools/parameters/output_collect.py
Expand Up @@ -205,6 +205,9 @@ def create_dataset(
else:
primary_data.init_meta()

primary_data.set_meta()
primary_data.set_peek()

return primary_data


Expand Down
8 changes: 6 additions & 2 deletions test/api/test_tools.py
Expand Up @@ -464,10 +464,14 @@ def test_dynamic_list_output( self ):
output_collection = get_collection_response.json()
self._assert_has_keys( output_collection, "id", "name", "elements", "populated" )
assert output_collection[ "populated" ]
assert len( output_collection[ "elements" ] ) == 2
self.assertEquals( output_collection[ "name" ], "Table split on first column" )

# TODO: verify element identifiers
assert len( output_collection[ "elements" ] ) == 2
output_element_0 = output_collection["elements"][0]
assert output_element_0["element_index"] == 0
assert output_element_0["element_identifier"] == "samp1"
output_element_hda_0 = output_element_0["object"]
assert output_element_hda_0["metadata_column_types"] is not None

@skip_without_tool( "cat1" )
def test_run_cat1_with_two_inputs( self ):
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -43,7 +43,7 @@ whitelist_externals = bash
skip_install = True
deps =
flake8
flake8-import-order>=0.9
flake8-import-order==0.9

[testenv:py27-lint-imports-include-list]
commands = bash .ci/flake8_wrapper_imports.sh
Expand Down

0 comments on commit 387c08b

Please sign in to comment.