1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/504264153fe1/ Changeset: 504264153fe1 User: inithello Date: 2013-03-26 15:02:17 Summary: Set do_not_test = True if the repository fails functional tests. Set do_not_test = False if the repository passes functional tests, so that the repository will always be re-tested against the most recent code. Affected #: 1 file diff -r b756a49b424565f5ec4037f25a89e987a47d184b -r 504264153fe1804c409c775be2c6db3f160b8fe2 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 @@ -241,8 +241,7 @@ listing = file( location, 'r' ).read() elif source == 'url': assert tool_shed_api_key is not None, 'Cannot proceed without tool shed API key.' - params = urllib.urlencode( dict( tools_functionally_correct='false', - do_not_test='false', + params = urllib.urlencode( dict( do_not_test='false', downloadable='true', malicious='false', includes_tools='true' ) ) @@ -281,10 +280,15 @@ return from_json_string( url_contents ) def register_test_result( url, metadata_id, test_results_dict, tests_passed=False ): + ''' + Set do_not_test = True if the repository fails functional tests. Set do_not_test = False + if the repository passes functional tests, so that the repository will always be re-tested + against the most recent code. + ''' params = {} if tests_passed: params[ 'tools_functionally_correct' ] = 'true' - params[ 'do_not_test' ] = 'true' + params[ 'do_not_test' ] = 'false' else: params[ 'tools_functionally_correct' ] = 'false' params[ 'do_not_test' ] = 'true' 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.