I have set up Jenkins to run a freestyle project. I am running a python test script, connecting over a serial connection to a piece of hardware. I would like Jenkins/Hudson to report (JUnit style) about the test results.
The test script prints the number of tests, the number of passed tests and number of failed tests as follows:
Total number of tests: 3 Number of passed test: 3 Number of failed test: 0
How can I get Jenkins to parse this? Or alternatively, how should I feed my test results to Jenkins in order to get them parsed.