Be Kind To New Users
Be Kind To New Users

Reputation: 10063

Jenkins support for csv test result file

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.

Upvotes: 2

Views: 3304

Answers (1)

burnettk
burnettk

Reputation: 14047

The path of least resistance--like you're guessing--is junit xml format.

https://stackoverflow.com/a/4925847/6090676 includes a seven-line junit xml example.

Upvotes: 1

Related Questions