Skip to content

Commit

Permalink
Add a clarifying comment
Browse files Browse the repository at this point in the history
  • Loading branch information
asimell committed Dec 20, 2024
1 parent 80a00aa commit 4b05e45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/docs/using_rf_in_ci_systems/ci/jenkins.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,14 @@ pipeline {
stage('Run Robot tests') {
steps {
sh """
// command to run your tests
robot -d test_results ${args}
"""
}
post {
always {
// Note! Do not mix the Jenkins `robot` step with the `robot` command run inside the previous
// `sh` step! The `robot` step _only_ publishes the results for Jenkins and the `robot` command
// inside `sh` step runs the tests!
robot(
outputPath : 'test_results',
outputFileName : "output.xml",
Expand Down

0 comments on commit 4b05e45

Please sign in to comment.