1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0005fa6a9891/ Changeset: 0005fa6a9891 User: Dave Bouvier Date: 2013-05-15 21:00:15 Summary: Add option to filter by repository installation error status in the repository metadata API controller. Affected #: 1 file diff -r 31616ab57a240c155ac2d5e1272bba28731552be -r 0005fa6a989143068c626cc63103aba910ba22f8 lib/galaxy/webapps/tool_shed/api/repository_revisions.py --- a/lib/galaxy/webapps/tool_shed/api/repository_revisions.py +++ b/lib/galaxy/webapps/tool_shed/api/repository_revisions.py @@ -54,6 +54,10 @@ includes_tools = kwd.get( 'includes_tools', None ) if includes_tools is not None: clause_list.append( trans.model.RepositoryMetadata.table.c.includes_tools == util.string_as_bool( includes_tools ) ) + # Filter by test_install_error if received. + test_install_error = kwd.get( 'test_install_error', None ) + if test_install_error is not None: + clause_list.append( trans.model.RepositoryMetadata.table.c.test_install_error == util.string_as_bool( test_install_error ) ) # Filter by skip_tool_test if received. skip_tool_test = kwd.get( 'skip_tool_test', None ) if skip_tool_test is not None: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.