I'm running tests on Jenkins using NUnit. They take more then 2 hours to run.
I need to see the progress of the tests so if there are a lot of failed tests I can start working on them. So in a real time I want to see if a test failed or passed.
Is there a way to do it on Jenkins if I use NUnit?
To run my tests I use the next batch command:
"C:\Program Files (x86)\NUnit 2.6.4\bin\nunit-console.exe" /xml=TestResult.xml "C:\Users\Denis\Documents\Visual Studio 2013\Projects\{myproject}\{myproject}\App.nunit"