commit/galaxy-central: inithello: Fix issue where only failures were being reported, not errors.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a80175a97194/ Changeset: a80175a97194 User: inithello Date: 2013-04-19 15:33:45 Summary: Fix issue where only failures were being reported, not errors. Affected #: 1 file diff -r 8e78d456456f5d3cf651a6e5f2dac53e9566034f -r a80175a97194630c1c668d3bad3cb8891d8ac219 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 @@ -694,7 +694,7 @@ log.debug( 'Revision %s of repository %s installed and passed functional tests.' % ( changeset_revision, name ) ) else: # If the functional tests fail, log the output and update the failed changeset revision's metadata record in the tool shed via the API. - for failure in result.failures: + for failure in result.failures + 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] ) tool_id, tool_version = get_tool_info_from_test_id( test_id ) 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