Skip to content

Commit

Permalink
mention planemo explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening committed Feb 12, 2019
1 parent 740fc85 commit f311ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/tools/verify/interactor.py
Expand Up @@ -273,7 +273,7 @@ def new_history(self):
def test_data_download(self, tool_id, filename, mode='file'):
if self.supports_test_data_download:
response = self._get("tools/%s/test_data_download?filename=%s" % (tool_id, filename), admin=True)
assert response.status_code == 200, "Test file (%s) is missing. Try --update_test_data to generate one." % filename
assert response.status_code == 200, "Test file (%s) is missing. If you use planemo try --update_test_data to generate one." % filename
if mode == 'file':
return response.content
elif mode == 'directory':
Expand All @@ -285,7 +285,7 @@ def test_data_download(self, tool_id, filename, mode='file'):
else:
# We can only use local data
response = self._get("tools/%s/test_data_path?filename=%s" % (tool_id, filename), admin=True)
assert response.status_code == 200, "Test file (%s) is missing. Try --update_test_data to generate one." % filename
assert response.status_code == 200, "Test file (%s) is missing. If you use planemo try --update_test_data to generate one." % filename
file_name = response.json()
if mode == 'file':
return open(file_name, mode='rb')
Expand Down

0 comments on commit f311ebd

Please sign in to comment.