Skip to content
Merged
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
7 changes: 4 additions & 3 deletions packs/tests/actions/chains/test_run_pack_tests_tool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ vars:
base_repo_url: "https://github.com/StackStorm"
# Note: Pack 1 should have no external dependencies beyond Python stdlib ones.
pack_to_install_1: "csv"
pack_to_install_2: "xml=0.3.0"
pack_to_install_2: "xml"
pack_to_install_2_with_version: "xml=0.3.0"
test_timeout: 180

chain:
Expand Down Expand Up @@ -38,7 +39,7 @@ chain:
ST2_AUTH_URL: "{{protocol}}://{{hostname}}:9100"
ST2_API_URL: "{{protocol}}://{{hostname}}:9101"
ST2_AUTH_TOKEN: "{{token}}"
cmd: "st2 pack install {{ pack_to_install_2 }}"
cmd: "st2 pack install {{ pack_to_install_2_with_version }}"
timeout: "{{test_timeout}}"
on-success: test_installed_pack_2_version
on-failure: error_handler
Expand All @@ -47,7 +48,7 @@ chain:
name: test_installed_pack_2_version
ref: tests.test_installed_pack_version
params:
installed_pack: "{{ pack_to_install_2 }}"
installed_pack: "{{ pack_to_install_2_with_version }}"
on-success: run_pack_tests_without_creating_virtualenv
on-failure: error_handler

Expand Down