commit/galaxy-central: inithello: Account for condition where output filename is not defined.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/392b82ef5b56/ Changeset: 392b82ef5b56 User: inithello Date: 2013-04-17 22:11:20 Summary: Account for condition where output filename is not defined. Affected #: 1 file diff -r 6e7ad33e263d821e82dce33054b9e10c1357f0e3 -r 392b82ef5b56ebb98b8802f94bd00b5761e5924d lib/tool_shed/scripts/check_repositories_for_functional_tests.py --- a/lib/tool_shed/scripts/check_repositories_for_functional_tests.py +++ b/lib/tool_shed/scripts/check_repositories_for_functional_tests.py @@ -382,6 +382,9 @@ required_test_files.append( input_file ) for output in test_dict[ 'outputs' ]: fieldname, filename = output + # In rare cases, the filename may be None. If that is the case, skip that output definition. + if filename is None: + continue if filename not in required_test_files: required_test_files.append( filename ) # Make sure each specified file actually does exist in the test data path of the cloned repository. 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