Hi ,
I'm trying to integrate Clover reporting with Bamboo.
For that i followd folowing steps.
1) add <pluginGroup>com.atlassian.maven.plugins</pluginGroup> to PluginsGroup section of my maven settings.xml
2) Ran the taks with maven task with goles : clean install clover2:setup clover2:aggregate clover2:clover
I can see tests getting executed , clover.xml and site is created but when i open the report it shows as no tests ran during the execution.
Test Results 0 / 0 tests 0 secs No test results could be found. Please ensure that you have instrumented your unit tests correctly.
are there any more configurations that i need to get this to work ?
thanks,
Charith
Hi Charith,
You need to run clover2:setup before your source code gets compiled.
Try the following:
mvn clean clover2:setup test clover:aggregate clover2:clover
Cheers,
Nick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.