khalid13
khalid13

Reputation: 2837

Parsing JUnit XML with Hudson

I'm using Jasmine-reporters with Jasmine to output a bunch of JUnitXML format files that I need Hudson to parse for me and report on success/failure. Does anybody know how I would ask Hudson to go test a bunch of XML as part of the build process? Thanks!

Upvotes: 0

Views: 801

Answers (1)

Zac Thompson
Zac Thompson

Reputation: 12665

In the job's "Post-build Actions", there should be a check box to "Publish JUnit test result report". You can put an ant-glob expression (as if you were writing an "includes" element) to match your xml files. I'm basing this on what I see in my Jenkins server; Hudson should be equivalent for your question.

Upvotes: 2

Related Questions