1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4db4660f5b12/ Changeset: 4db4660f5b12 User: Dave Bouvier Date: 2013-10-07 22:46:17 Summary: Fix for update manager functional test failing. Affected #: 2 files diff -r f3bdde9002def4b09eae778dbd250d40512a30ac -r 4db4660f5b121eee69a822b9c1294e4316855715 test/tool_shed/base/twilltestcase.py --- a/test/tool_shed/base/twilltestcase.py +++ b/test/tool_shed/base/twilltestcase.py @@ -1093,6 +1093,10 @@ self.visit_galaxy_url( url ) self.check_for_strings( strings_displayed, strings_not_displayed ) + def update_tool_shed_status( self ): + url = '/admin_toolshed/update_tool_shed_status_for_installed_repository?all_installed_repositories=True' + self.visit_galaxy_url( url ) + def upload_file( self, repository, filename, diff -r f3bdde9002def4b09eae778dbd250d40512a30ac -r 4db4660f5b121eee69a822b9c1294e4316855715 test/tool_shed/functional/test_1410_update_manager.py --- a/test/tool_shed/functional/test_1410_update_manager.py +++ b/test/tool_shed/functional/test_1410_update_manager.py @@ -121,5 +121,8 @@ time.sleep( 3 ) self.galaxy_logout() self.galaxy_login( email=common.admin_email, username=common.admin_username ) - self.display_galaxy_browse_repositories_page( strings_displayed=[ 'state-color-running' ] ) + repository = test_db_util.get_repository_by_name_and_owner( repository_name, common.test_user_1_name ) + self.update_tool_shed_status() + strings_displayed = [ '"%s"><img src="/static/images/icon_warning_sml.gif"' % self.security.encode_id( repository.id ) ] + self.display_galaxy_browse_repositories_page( strings_displayed=strings_displayed ) 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.