commit/galaxy-central: greg: Include tool shed environment information when displaying functional test results in the tool shed.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b89a535240e5/ changeset: b89a535240e5 user: greg date: 2013-03-12 14:06:52 summary: Include tool shed environment information when displaying functional test results in the tool shed. affected #: 1 file diff -r be95601bd33fde791b42dff3e7446d0ccdcf7fd1 -r b89a535240e5cb5fc123264b6294f86a577d02d9 templates/webapps/tool_shed/repository/display_tool_functional_test_results.mako --- a/templates/webapps/tool_shed/repository/display_tool_functional_test_results.mako +++ b/templates/webapps/tool_shed/repository/display_tool_functional_test_results.mako @@ -136,25 +136,30 @@ </div><div class="form-row"><table width="100%"> - <tr bgcolor="#D8D8D8" width="100%"><td><b>Test environment</td></tr> + <tr bgcolor="#D8D8D8" width="100%"><td><b>Tool Shed environment</td></tr></table></div><div class="form-row"> - <label>Architecture:</label> - ${test_environment_dict.get( 'architecture', 'unknown' ) | h} + <label>Tool shed version:</label> + ${test_environment_dict.get( 'tool_shed_revision', 'unknown' ) | h} <div style="clear: both"></div></div><div class="form-row"> - <label>Python version:</label> - ${test_environment_dict.get( 'python_version', 'unknown' ) | h} + <label>Tool shed database version:</label> + ${test_environment_dict.get( 'tool_shed_database_version', 'unknown' ) | h} <div style="clear: both"></div></div><div class="form-row"> - <label>Operating system:</label> - ${test_environment_dict.get( 'system', 'unknown' ) | h} + <label>Mercurial version:</label> + ${test_environment_dict.get( 'tool_shed_mercurial_version', 'unknown' ) | h} <div style="clear: both"></div></div><div class="form-row"> + <table width="100%"> + <tr bgcolor="#D8D8D8" width="100%"><td><b>Galaxy environment</td></tr> + </table> + </div> + <div class="form-row"><label>Galaxy version:</label> ${test_environment_dict.get( 'galaxy_revision', 'unknown' ) | h} <div style="clear: both"></div> @@ -164,6 +169,21 @@ ${test_environment_dict.get( 'galaxy_database_version', 'unknown' ) | h} <div style="clear: both"></div></div> + <div class="form-row"> + <label>Architecture:</label> + ${test_environment_dict.get( 'architecture', 'unknown' ) | h} + <div style="clear: both"></div> + </div> + <div class="form-row"> + <label>Operating system:</label> + ${test_environment_dict.get( 'system', 'unknown' ) | h} + <div style="clear: both"></div> + </div> + <div class="form-row"> + <label>Python version:</label> + ${test_environment_dict.get( 'python_version', 'unknown' ) | h} + <div style="clear: both"></div> + </div> %if test_errors: <div class="form-row"><table width="100%"> 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