commit/galaxy-central: greg: Eliminate comparison of times tested in the tool shed's install and test framework.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/6aeb657bc40e/ Changeset: 6aeb657bc40e User: greg Date: 2014-01-08 03:50:02 Summary: Eliminate comparison of times tested in the tool shed's install and test framework. Affected #: 1 file diff -r 478c60421dd9a71422d98ee2ada8043bf53ffeef -r 6aeb657bc40ee0884f538308e1bfbec0b197c44b test/install_and_test_tool_shed_repositories/base/util.py --- a/test/install_and_test_tool_shed_repositories/base/util.py +++ b/test/install_and_test_tool_shed_repositories/base/util.py @@ -899,6 +899,7 @@ else: # Check the required repository's time_last_tested value to see if its tool_test_results column # has been updated within the past 12 hours. + """ twelve_hours_ago = datetime.utcnow() - timedelta( hours=12 ) time_last_tested, error_message = get_time_last_tested( galaxy_tool_shed_url, repository_metadata_id ) if time_last_tested is not None and time_last_tested < twelve_hours_ago: @@ -915,6 +916,7 @@ else: log.debug( 'Version %s of repository dependency %s owned by %s was last tested more than 12 hours ago.' % \ ( changeset_revision, name, owner ) ) + """ # Inspect the tool_test_results_dict for the last test run to see if it has not yet been populated. if len( tool_test_results_dicts ) == 0: tool_test_results_dict = {} 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