commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c906eacc8d54/ Changeset: c906eacc8d54 Branch: next-stable User: jmchilton Date: 2014-12-06 02:16:03+00:00 Summary: ... and not all select params have static_options attribute. Bug fixes for bug fixes - why do I even try? Affected #: 1 file diff -r 7114d15a6d2234cb895d058e0e44c86f373c49b2 -r c906eacc8d543384ad84b87f34e6b515fc695bcd lib/galaxy/tools/test.py --- a/lib/galaxy/tools/test.py +++ b/lib/galaxy/tools/test.py @@ -202,7 +202,7 @@ for ( name, value, extra ) in collection_def.collect_inputs(): require_file( name, value, extra, self.required_files ) processed_value = collection_def - elif isinstance( value, basic.SelectToolParameter ): + elif isinstance( value, basic.SelectToolParameter ) and hasattr( value, 'static_options' ): # Tests may specify values as either raw value or the value # as they appear in the list - the API doesn't and shouldn't # accept the text value - so we need to convert the text https://bitbucket.org/galaxy/galaxy-central/commits/79cea2ce170e/ Changeset: 79cea2ce170e User: jmchilton Date: 2014-12-06 02:16:13+00:00 Summary: Merge next-stable. Affected #: 1 file diff -r 719191cd0f3ea8ad2ff02ec303dabf0e22c31e60 -r 79cea2ce170e61db6afd6d249379b96cf353f15b lib/galaxy/tools/test.py --- a/lib/galaxy/tools/test.py +++ b/lib/galaxy/tools/test.py @@ -202,7 +202,7 @@ for ( name, value, extra ) in collection_def.collect_inputs(): require_file( name, value, extra, self.required_files ) processed_value = collection_def - elif isinstance( value, basic.SelectToolParameter ): + elif isinstance( value, basic.SelectToolParameter ) and hasattr( value, 'static_options' ): # Tests may specify values as either raw value or the value # as they appear in the list - the API doesn't and shouldn't # accept the text value - so we need to convert the text 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