Hello,
judging from your current output, you are currently running your slave with git client plugin in verbose mode (note : this is *not* the default behaviour). This feature is controlled by the following system property : hudson.plugins.git.IGitAPI.verbose . If false, you won't see any of the git commands (lines prefixed by '>') in your screenshot.
Also, I can also recommend you to leverage existing test report infrastructure provided by Jenkins, by producing a JUnit-compatible report, or using a plugin such as XUnit plugin to transform the output into the JUnit one. That way, you benefit from graphical report, trend and drilldown into test failures when they happen. And as a side-effect, your developers no longer have to go check out the console to check test results ;)