1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/82e91d215acf/ Changeset: 82e91d215acf User: greg Date: 2013-11-23 19:17:30 Summary: Fix for tool shed install and test framework. Affected #: 1 file diff -r 13bd960b94141a2974d0c968c26fc046e05e1d14 -r 82e91d215acf573d96d3d377620ed8815368c86d 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 @@ -672,12 +672,12 @@ repository_status_dict[ 'installation_errors' ][ 'current_repository' ] = error_message # Even if the repository failed to install, execute the uninstall method, in case a dependency did succeed. - log.debug( 'Attempting to uninstall repository %s' % str( name ) ) + log.debug( 'Attempting to uninstall repository %s owned by %s.' % ( name, owner ) ) try: repository = test_db_util.get_installed_repository_by_name_owner_changeset_revision( name, owner, changeset_revision ) - except: - log.exception( 'No installed repository found.' ) - error_message = '%s\n%s' % ( error_message, extract_log_data( result, from_tool_test=False ) ) + except Exception, e: + error_message = 'Unable to find installed repository %s owned by %s: %s.' % ( name, owner, str( e ) ) + log.exception( error_message ) test_result = dict( tool_shed=galaxy_tool_shed_url, name=name, owner=owner, 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.