commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/00e6a69ed1c4/ Changeset: 00e6a69ed1c4 Branch: next-stable User: Dave Bouvier Date: 2013-05-21 21:53:42 Summary: Fix for repositories incorrectly being displayed in the list of repositories with failing tool tests. Affected #: 1 file diff -r ea8d92515d42321592e77842387290dcc1190a2b -r 00e6a69ed1c4f34e68ab89ca03462e47c23b71c4 lib/tool_shed/grids/repository_grids.py --- a/lib/tool_shed/grids/repository_grids.py +++ b/lib/tool_shed/grids/repository_grids.py @@ -1650,6 +1650,7 @@ tip_ctx = str( repo.changectx( repo.changelog.tip() ) ) repository_metadata = get_latest_installable_repository_metadata_if_it_includes_tools( trans, repository ) if repository_metadata \ + and repository_metadata.tool_test_results is not None \ and not repository_metadata.missing_test_components \ and not repository_metadata.tools_functionally_correct \ and not repository_metadata.test_install_error: https://bitbucket.org/galaxy/galaxy-central/commits/fe0905ea5287/ Changeset: fe0905ea5287 User: Dave Bouvier Date: 2013-05-21 21:54:20 Summary: Merge in fix from next-stable. Affected #: 1 file diff -r 342617fcad86f6948dabaf136fe0c04a83212aad -r fe0905ea52874c451303f5e60d5158387695aaef lib/tool_shed/grids/repository_grids.py --- a/lib/tool_shed/grids/repository_grids.py +++ b/lib/tool_shed/grids/repository_grids.py @@ -1650,6 +1650,7 @@ tip_ctx = str( repo.changectx( repo.changelog.tip() ) ) repository_metadata = get_latest_installable_repository_metadata_if_it_includes_tools( trans, repository ) if repository_metadata \ + and repository_metadata.tool_test_results is not None \ and not repository_metadata.missing_test_components \ and not repository_metadata.tools_functionally_correct \ and not repository_metadata.test_install_error: 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.
participants (1)
-
commits-noreply@bitbucket.org