Skip to content

Instantly share code, notes, and snippets.

@Osein
Created July 1, 2019 05:06
Show Gist options
  • Select an option

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

Select an option

Save Osein/8cc2ebfd84355348027d34dc63bc79ed to your computer and use it in GitHub Desktop.
stage('Run Unit and UI Tests') {
when {
expression {
return env.shouldBuild != "false"
}
}
steps {
script {
try {
sh "fastlane runTests"
} 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