Jenkins is a powerful tool, but when I build a job, I cannot see runtime test progress or test results on the console output. The job is built by way of "Execute shell". For example, I have following test results: + ./manage.py test api ..EEFBuild was aborte
But jenkins only show the test results on console output when the build is finished. When the build process is not finished, jenkins only shows the last statement of test call(mange.py test ..) and an image of running circle, but could not show the test progress, as the image shown below. <https://lh4.googleusercontent.com/-8M4gbYpfMuc/T5QK_W6GdaI/AAAAAAAAAHY/xFAqLa5GBeM/s1600/jenkins_waiting_finished.jpg> I think it would be convenient to get immediate test results when the tests are still running. So is this possible by any configuration or plugin? Thanks in advance.