is there a way to have the cobertura test coverage graph be shown on the front page of a project, similar to the test trend graph? I'd like to have that displayed next to the coverage graph. Any help would be appreciated. Thanks.
相关问题
- Plotting multiple columns with ggplot2 [duplicate]
- R markov chain package, is possible to set the coo
- Tick label text and frequency in matplotlib plot
- Xcode Code Coverage and fopen$UNIX2003
- How to make limits on the Y axis be the same using
相关文章
- How to plot smoother curves in R
- How to add clipboard support to Matplotlib figures
- Adding a legend to a matplotlib boxplot with multi
- Passing the Maven Debug Flag from Hudson
- R plot legend with transparent background
- Hudson and maven-release-plugin
- How to plot a smooth 2D color plot for z = f(x, y)
- imshow when you are plotting data, not images. Rea
Here's posts for
1. Setting up a
pom.xml
for generating reports Cobertura, Findbugs, Checkstyle and Surefire unit test results. development-environment-for-google-app2. And how to configure Hudson to display the reports. hudson-continous-integration-for-google
Hudson has a set of plugins which you can use to extend its functionality to best suit to your requirements. One of this plugins is the Cobertura Plugin. Once you've installed it, in each of your project's configuration a new Post-Build action will appear with the title 'Publish Cobertura Coverage report'.
With this configuration Hudson is able to build cobertura graphs from a generated report. It's up to you to make your builds generate that report. For this task, if you are using maven, plugins are available to add them to your reports.
Hope it helps.
The graph does not show up in when running a maven2 project, only a freestyle project.