Re: Pipeline conversion of MSTest to JUnit using XUnit

2017-05-19 Thread Joe Cavanaugh
step([ $class: 'XUnitBuilder', testTimeMargin: '3000', thresholdMode: 1, thresholds: [ [$class: 'FailedThreshold', failureNewThreshold: '', failureThreshold: '0', unstableNewThreshold: '', unstableThreshold: ''], [$class: 'SkippedThreshold', failureNewThreshold: '', failureThreshold: '',

Re: Pipeline conversion of MSTest to JUnit using XUnit

2017-05-18 Thread JonathanRRogers
I use the junit plugin because it has features xunit doesn't, such as the ability to handle attachments. Despite the name, junit is useful for more than just Java code and can generate reports from any compliant XML files. I use it with files generated by the Python py.test framework. The junit

Re: Pipeline conversion of MSTest to JUnit using XUnit

2017-05-17 Thread Thiago Carvalho Davila
I didn't see xUnit option in snippet generator. Em 17/05/2017 13:53:30, Slide escreveu: > Have you tried using the snippet generator? > > On Wed, May 17, 2017 at 7:59 AM Thiago Carvalho Davila <> > thiago.dav...@serpro.gov.br> > wrote: > > Hi, > > > > I've been trying to convert MSTests using

Re: Pipeline conversion of MSTest to JUnit using XUnit

2017-05-17 Thread Slide
Have you tried using the snippet generator? On Wed, May 17, 2017 at 7:59 AM Thiago Carvalho Davila < thiago.dav...@serpro.gov.br> wrote: > Hi, > > I've been trying to convert MSTests using pipeline, and I've been > struggling to make a step for that: > > step([$class:

Pipeline conversion of MSTest to JUnit using XUnit

2017-05-17 Thread Thiago Carvalho Davila
Hi, I've been trying to convert MSTests using pipeline, and I've been struggling to make a step for that:     step([$class: 'XUnitBuilder', thresholds: [[$class: 'FailedThreshold', unstableThreshold: '1']], tools: [[$class: 'MSTest', pattern: 'TestResults\\*.trx']]]) For this I