Re: Viewing a CSV (or any text file really) in a jenkins report

2016-05-10 Thread bubunia2000ster
I have the same requirements. I was looking for a CSV plugin which parse the CSV file and shows a nice report (PASS/FAIL etc). I tried to google it but could not find a good one. On Wednesday, November 27, 2013 at 6:44:53 PM UTC+5:30, Noam Mendelssohn wrote: > > Hey guys > > I have a jenkins jo

Re: Viewing a CSV (or any text file really) in a jenkins report

2014-09-02 Thread sanjaysy123
Hi Mark, I have the same requirement, the test framework generate a CSV as test report, want to display it on jenkins dashboard, I am not getting what's the proper way to transform a CSV file into Junit format to diplay it into jenkins, appreciate your help thanks On Wednesday, November 27, 2

Re: Viewing a CSV (or any text file really) in a jenkins report

2013-11-27 Thread Mark Waite
Usually, contents of a CSV file represent something higher level. You might look for a plugin that presents that higher level thing, then convert the CSV to the format of that higher level thing and display it using the Jenkins plugin for that thing. For example, if it is test results, you could

Viewing a CSV (or any text file really) in a jenkins report

2013-11-27 Thread Noam Mendelssohn
Hey guys I have a jenkins job, which creates a CSV file. The file is a list of lines of comma seperetated values. You know, a CSV :) Anywho, I want to display the contents of this file in some kind of automatic report in this job. Currently the CSV is archived and can be downloaded and viewed,