Does anyone have experience with running unit tests written in Ruby from within Maven.
Any inputs, like the library/maven plugin to be used, will be highly appreciated!
We are already using Maven+hudson+Junit. But we are introducing Ruby unit tests, and can’t find any equally good combination for it.
I recommend having Maven kick off
rake testusing the Exec Maven Plugin (exec:execgoal) and using the ci_reporter gem to produce an XML file of unit test results that Hudson, Bamboo, etc. can read to display test results in the same format that your JUnit tests are in.If you don’t need to run your Ruby tests with
mvn test, you can also just use the Hudson rake plugin.