Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add assertion that autoupdate does not modify input description #1451

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/test_cmd_autoupdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ def test_autoupdate_workflow_from_multiple_tool_sheds(self):
assert wf["steps"]["1"]["tool_version"] != "9.3+galaxy0"
# Assert testtoolshed tool is updated
assert wf["steps"]["2"]["tool_version"] != "0.69"
# Assert that name and description of inputs in not modified
assert wf["steps"]["0"]["inputs"][0]["name"] == "pe-fastq"
assert wf["steps"]["0"]["inputs"][0]["description"] == ""

def test_autoupdate_workflow_unexisting_version(self):
"""Test autoupdate command for a workflow where the version of the tool is not in the toolshed."""
Expand Down
Loading