I have a test result file that looks like this:
test1,PASS
test2,FAIL
test3,SKIP
It is easy for me to vary the format as long as it remains .csv or some other simple text file.
What is an easy way to get Jenkins to recognize either natively or with commonly used plugins?
I could create a JUnit style output if I could get the minimally functional JUnit file that Jenkins would read, but I would rather not have to deal with verbose XML file for such simple test results.