commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/064ea784eae7/ Changeset: 064ea784eae7 Branch: next-stable User: Dave Bouvier Date: 2013-05-23 15:45:24 Summary: Fix for missing tool test results display on manage repository page. Affected #: 1 file diff -r 252027d00b441db33005080860970c3441399a77 -r 064ea784eae74cdb7b4ac0319ec0aa13ee55fcbd lib/galaxy/webapps/tool_shed/util/container_util.py --- a/lib/galaxy/webapps/tool_shed/util/container_util.py +++ b/lib/galaxy/webapps/tool_shed/util/container_util.py @@ -801,7 +801,7 @@ if tool_test_results: # Only create and populate this folder if there are actual tool test results to display, since the # display of the 'Test environment' folder by itself can be misleading. - if 'passed_tests' in tool_test_results or 'failed_tests' in tool_test_results or 'installation_errors' in tool_test_results: + if len( tool_test_results ) > 1: folder_id, tool_test_results_root_folder = build_tool_test_results_folder( trans, folder_id, tool_test_results, time_last_tested=time_last_tested ) containers_dict[ 'tool_test_results' ] = tool_test_results_root_folder # Workflows container. https://bitbucket.org/galaxy/galaxy-central/commits/23dcf647ab62/ Changeset: 23dcf647ab62 User: Dave Bouvier Date: 2013-05-23 15:45:50 Summary: Merge in fix from next-stable. Affected #: 1 file diff -r ee040d59779808ec5d748f3df04377b333b74a54 -r 23dcf647ab620a032be9cbc3805707dff75f63b5 lib/galaxy/webapps/tool_shed/util/container_util.py --- a/lib/galaxy/webapps/tool_shed/util/container_util.py +++ b/lib/galaxy/webapps/tool_shed/util/container_util.py @@ -801,7 +801,7 @@ if tool_test_results: # Only create and populate this folder if there are actual tool test results to display, since the # display of the 'Test environment' folder by itself can be misleading. - if 'passed_tests' in tool_test_results or 'failed_tests' in tool_test_results or 'installation_errors' in tool_test_results: + if len( tool_test_results ) > 1: folder_id, tool_test_results_root_folder = build_tool_test_results_folder( trans, folder_id, tool_test_results, time_last_tested=time_last_tested ) containers_dict[ 'tool_test_results' ] = tool_test_results_root_folder # Workflows container. 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