Skip to content

Instantly share code, notes, and snippets.

@kapoorlakshya
Last active February 3, 2019 10:33
Show Gist options
  • Save kapoorlakshya/68b967735eb628c8f0b373c15a325bd7 to your computer and use it in GitHub Desktop.
Save kapoorlakshya/68b967735eb628c8f0b373c15a325bd7 to your computer and use it in GitHub Desktop.
// Build Cucumber Report
post {
always {
dir(path: 'cucumber-watir') {
cucumber(classifications: [
[
key: 'App Node',
value: '${app_node}'
],
[
key: 'UI Node',
value: "${NODE_NAME}"
],
[
key: 'Browser',
value: '${browser}'
],
[
key: 'Branches',
value: '${cucumber_branch}'
]
],
fileIncludePattern: 'cucumber.json',
sortingMethod: 'ALPHABETICAL')
}
} // always
} // post
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment