1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/52b6923d713b/ Changeset: 52b6923d713b User: Dave Bouvier Date: 2013-05-15 21:25:48 Summary: Fix incorrect setting of the do_not_test flag when a repository has installation errors. Affected #: 1 file diff -r 89b5f6866eeb2fcb955d4e773d5b5328dd214610 -r 52b6923d713b0c205cdc8c970e49f4b606710056 test/install_and_test_tool_shed_repositories/functional_tests.py --- a/test/install_and_test_tool_shed_repositories/functional_tests.py +++ b/test/install_and_test_tool_shed_repositories/functional_tests.py @@ -790,9 +790,8 @@ error_message=dependency.error_message ) repository_status[ 'installation_errors' ][ 'repository_dependencies' ].append( test_result ) # Record the status of this repository in the tool shed. - set_do_not_test = not is_latest_downloadable_revision( galaxy_tool_shed_url, repository_info_dict ) params[ 'tools_functionally_correct' ] = 'false' - params[ 'do_not_test' ] = str( set_do_not_test ) + params[ 'do_not_test' ] = 'false' params[ 'test_install_error' ] = 'true' register_test_result( galaxy_tool_shed_url, metadata_revision_id, @@ -925,10 +924,9 @@ changeset_revision=repository.changeset_revision, error_message=repository.error_message ) repository_status[ 'installation_errors' ][ 'repository_dependencies' ].append( test_result ) - set_do_not_test = not is_latest_downloadable_revision( galaxy_tool_shed_url, repository_info_dict ) params[ 'tools_functionally_correct' ] = 'false' params[ 'test_install_error' ] = 'true' - params[ 'do_not_test' ] = str( set_do_not_test ) + params[ 'do_not_test' ] = 'false' register_test_result( galaxy_tool_shed_url, metadata_revision_id, repository_status, 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.