1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/46dd06fbc774/ Changeset: 46dd06fbc774 User: greg Date: 2013-12-13 20:30:34 Summary: Use the latest test results dictionary in the current install and test run if it contains only test_environment and missing_test_components entries. Affected #: 1 file diff -r a46ac538684e86002e5386aefb7a6c3b921eae45 -r 46dd06fbc7744f9539e6dba7233350964a272eb5 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 @@ -638,6 +638,11 @@ # a test_environment entry. If we use it we need to temporarily eliminate it from the list of tool_test_results_dicts # since it will be re-inserted later. tool_test_results_dict = tool_test_results_dicts.pop( 0 ) + elif len( tool_test_results_dict ) == 2 and \ + 'test_environment' in tool_test_results_dict and 'missing_test_components' in tool_test_results_dict: + # We can re-use tool_test_results_dict if its only entries are "test_environment" and "missing_test_components". + # In this case, some tools are missing tests components while others are not. + tool_test_results_dict = tool_test_results_dicts.pop( 0 ) else: # The latest tool_test_results_dict has been populated with the results of a test run, so it cannot be used. tool_test_results_dict = {} 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.