commit/galaxy-central: inithello: Correctly handle repository dependencies when running the automated install and test script.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/eb923432a1ac/ Changeset: eb923432a1ac User: inithello Date: 2013-04-18 21:16:47 Summary: Correctly handle repository dependencies when running the automated install and test script. Affected #: 1 file diff -r 02a467df84a365dde3084370a097a0859e6a45d3 -r eb923432a1ac56dd7a2e5a3b640a79487acea1b3 test/install_and_test_tool_shed_repositories/base/twilltestcase.py --- a/test/install_and_test_tool_shed_repositories/base/twilltestcase.py +++ b/test/install_and_test_tool_shed_repositories/base/twilltestcase.py @@ -88,7 +88,15 @@ checkbox.selected = False kwd[ 'install_tool_dependencies' ] = 'False' if 'install_repository_dependencies' in self.last_page(): - kwd[ 'install_repository_dependencies' ] = str( install_repository_dependencies ).lower() + form = tc.browser.get_form( 'select_tool_panel_section' ) + checkbox = form.find_control( id="install_repository_dependencies" ) + checkbox.disabled = False + if install_repository_dependencies: + checkbox.selected = True + kwd[ 'install_repository_dependencies' ] = 'True' + else: + checkbox.selected = False + kwd[ 'install_repository_dependencies' ] = 'False' if 'shed_tool_conf' not in kwd: kwd[ 'shed_tool_conf' ] = self.shed_tool_conf if new_tool_panel_section: 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