1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/47e869a73907/ Changeset: 47e869a73907 User: greg Date: 2014-01-07 03:13:25 Summary: Always initialize the tool shed install and tes framework's tool_test_results_dict. Affected #: 1 file diff -r 9df289e311209975ab34c288d8229096683af0e0 -r 47e869a73907381c094b691185c88d620a13fa97 test/install_and_test_tool_shed_repositories/base/util.py --- a/test/install_and_test_tool_shed_repositories/base/util.py +++ b/test/install_and_test_tool_shed_repositories/base/util.py @@ -856,7 +856,7 @@ # Inspect the tool_test_results_dict for the last test run to see if it has not yet been populated if len( tool_test_results_dicts ) == 0: populated = False - tool_test_results_dict = initialize_tool_tests_results_dict( app, {} ) + tool_test_results_dict = {} else: tool_test_results_dict = tool_test_results_dicts[ 0 ] if len( tool_test_results_dict ) <= 1: @@ -870,6 +870,8 @@ else: populated = True if not populated: + # Make sure all expected entries are available in the tool_test_results_dict. + tool_test_results_dict = initialize_tool_tests_results_dict( app, tool_test_results_dict ) # Get the installed repository record from the Galaxy database. required_repository = \ suc.get_tool_shed_repository_by_shed_name_owner_changeset_revision( app, 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.