1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/6b0c3592dde1/ Changeset: 6b0c3592dde1 User: Dave Bouvier Date: 2013-10-07 20:28:43 Summary: Make extract_log_data return a list of dicts rather than a dict. Affected #: 1 file diff -r 592d6dd40cd24eaf30aad2554c104c46144fb6c2 -r 6b0c3592dde1f816a49645353ca1adabb37fe89c 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 @@ -275,6 +275,7 @@ def extract_log_data( test_result, from_tool_test=True ): '''Extract any useful data from the test_result.failures and test_result.errors attributes.''' + log_data = [] for failure in test_result.failures + test_result.errors: # Record the twill test identifier and information about the tool, so the repository owner can discover which test is failing. test_id = str( failure[0] ) @@ -314,7 +315,8 @@ for output_type in [ 'stderr', 'traceback' ]: if output_type in tmp_output: test_status[ output_type ] = '\n'.join( tmp_output[ output_type ] ) - return test_status + log_data.append( test_status ) + return log_data def get_api_url( base, parts=[], params=None, key=None ): if 'api' in parts and parts.index( 'api' ) != 0: 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.