Skip to content

Instantly share code, notes, and snippets.

@Osein
Last active June 30, 2019 19:47
Show Gist options
  • Select an option

  • Save Osein/fbfba9133dac32d948dc96bb71123909 to your computer and use it in GitHub Desktop.

Select an option

Save Osein/fbfba9133dac32d948dc96bb71123909 to your computer and use it in GitHub Desktop.
stage('Run Unit and UI Tests') {
when {
expression {
return env.shouldBuild != "false"
}
}
steps {
script {
try {
// Run your tests here
} catch(exc) {
currentBuild.result = "UNSTABLE"
error('There are failed tests.')
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment