Java jenkins plugin for cucumber-jvm reporting
Go to file
Kingsley Hendrickse 40a3637427 Updated with the fix provided by Rodrigo to allow plugin to find the feature files on a windows system 2012-04-23 08:41:05 +01:00
.README
src/main Updated with the fix provided by Rodrigo to allow plugin to find the feature files on a windows system 2012-04-23 08:41:05 +01:00
.gitignore Added row and cell support 2012-04-19 11:14:25 +01:00
README.md Updates readme links 2012-04-16 08:36:08 +01:00
cucumber-reports.iml Fixed config values not being retained and added path to specify plugin url 2012-04-17 14:41:51 +01:00
pom.xml Updated with the fix provided by Rodrigo to allow plugin to find the feature files on a windows system 2012-04-23 08:41:05 +01:00
velocity.log Added row and cell support 2012-04-19 11:14:25 +01:00

README.md

Publish pretty cucumber-jvm reports on Jenkins

This is a Java Jenkins plugin which publishes pretty html reports showing the results of cucumber-jvm runs.

Background

Cucumber-JVM is a test automation tool following the principles of Behavioural Driven Design and living documentation. Specifications are written in a concise human readable form and executed in continuous integration.

This plugin allows Jenkins to publish the results as pretty html reports hosted by the Jenkins build server. In order for this plugin to work you must be using the JUnit runner and generating a json report. The plugin converts the json report into an overview html linking to separate feature file htmls with stats and results.

Install

  1. Get Jenkins.

  2. Install the [cucumber-jvm-reports-java] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java/downloads) plugin.

  3. Restart Jenkins.

Use

With the cucumber-jvm-reports plugin installed in Jenkins, you simply check the "Publish cucumber results as a report" box in the publish section of the build config and enter the path to the json reports relative to the workspace:

![check the publish cucumber-jvm-reports box] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin/raw/master/.README/publish-box.png)

When a build runs that publishes cucumber-jvm results it will put a link in the sidepanel to the cucumber reports. There is a feature overview page:

![feature overview page] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin/raw/master/.README/feature-overview.png)

And there are also feature specific results pages:

![feature specific page passing] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin/raw/master/.README/feature-passed.png)

And useful information for failures:

![feature specific page passing] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin/raw/master/.README/feature-failed.png)

Make sure you have configured cucumber-jvm to run with the JUnit runner and to generate a json report:

package net.masterthought.example;

import cucumber.junit.Cucumber;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@Cucumber.Options(format = {"pretty", "html:target/cucumber", "json:target/cucumber.json"})
public class ATMTest {
}

Develop

Interested in contributing to the Jenkins cucumber-jvm-reports plugin? Great! Start [here] (https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin-java).