How to trigger reports mail on fitnesse slim test runs?

451 Views Asked by At

We are using Fitnesse slim in our project. As of now we were executing the fitnesse tests (slim) from wiki page and we were checking the results manually from wiki itself.

Now, we are planning to implement CI for our project. So, is there a way to integrate fitnesse slim with AnthilPro (CI tool) and can run fitnesse tests / suits automatically and send the execution results to specified set of email IDs ?

Kindly help me out. I know that, many have already implemented this. But, i am not getting the exact info i am looking for anywhere.

Thank you, Chethan

1

There are 1 best solutions below

7
On

I'm not familiar with anthillpro, but I run fitnesse test using their junit runner on teamcity and Jenkins. This produces test results those ci tools pick up automatically, and html reports for people to see the test details. Mailing people based on build outcome is a standard feature of the tools. I assume for anthill also.

Would that work for you?

My fitnesse baseline project contains a maven setup to run a fitnesse suite with a single maven call: mvn clean test-compile failsafe:integration-test. I assume that making a job the checks out a project, executes a maven call and then e-mails based on test outcome is just as simple to setup in anthill as in other ci tools.