Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions robotfm_tests/cli/packs_python3.robot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ TEST:Verify "packs.setup_virtualenv" with no python3 flag works and defaults to

${result}= Run Process st2 run packs.setup_virtualenv packs\=examples -j
Process Log To Console ${result}
Should Contain ${result.stdout} "result": "Successfuly set up virtualenv for the following packs: examples"
Should Contain ${result.stdout} "result": "Successfully set up virtualenv for the following packs: examples"
Should Contain ${result.stdout} ${SUCCESS STATUS}
${result}= Run Process /opt/stackstorm/virtualenvs/examples/bin/python --version
Process Log To Console ${result}
Expand All @@ -21,7 +21,7 @@ TEST:Verify "packs.setup_virtualenv" with python3 flag works

${result}= Run Process st2 run packs.setup_virtualenv packs\=examples python3\=true -j
Process Log To Console ${result}
Should Contain ${result.stdout} "result": "Successfuly set up virtualenv for the following packs: examples"
Should Contain ${result.stdout} "result": "Successfully set up virtualenv for the following packs: examples"
Should Contain ${result.stdout} ${SUCCESS STATUS}
${result}= Run Process /opt/stackstorm/virtualenvs/examples/bin/python --version
Process Log To Console ${result}
Expand Down
2 changes: 1 addition & 1 deletion robotfm_tests/docs/integration_packs_doc.robot
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ TEST:OLD-Verify packs can be downloaded using packs.download

TEST:OLD-Verify "packs.setup_virtualenv" for a pack downloaded in previous step
${result}= Run Process st2 run packs.setup_virtualenv packs\=${PACK TO INSTALL 1} -j
Should Contain ${result.stdout} "result": "Successfuly set up virtualenv for the following packs: ${PACK TO INSTALL 1}"
Should Contain ${result.stdout} "result": "Successfully set up virtualenv for the following packs: ${PACK TO INSTALL 1}"
Should Contain ${result.stdout} ${SUCCESS STATUS}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ TEST:Verify examples pack installation and setup
${result}= Run Process sudo cp -r /usr/share/doc/st2/examples/ /opt/stackstorm/packs/
Directory Should Exist /opt/stackstorm/packs/examples
${result}= Run Process st2 run packs.setup_virtualenv packs\=examples -j
Should Contain ${result.stdout} "result": "Successfuly set up virtualenv for the following packs: examples"
Should Contain ${result.stdout} "result": "Successfully set up virtualenv for the following packs: examples"
Should Contain ${result.stdout} "status": "succeeded"
${result}= Run Process st2 action list -p examples
Should Contain ${result.stdout} No matching items found
Expand Down