Skip to content

Commit 8a03bbc

Browse files
committed
Fix failure introduced in #176.
1 parent 895b0ae commit 8a03bbc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packs/tests/actions/chains/test_run_pack_tests_tool.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ vars:
33
base_repo_url: "https://github.com/StackStorm"
44
# Note: Pack 1 should have no external dependencies beyond Python stdlib ones.
55
pack_to_install_1: "csv"
6-
pack_to_install_2: "xml=0.3.0"
6+
pack_to_install_2: "xml"
7+
pack_to_install_2_with_version: "xml=0.3.0"
78
test_timeout: 180
89

910
chain:
@@ -38,7 +39,7 @@ chain:
3839
ST2_AUTH_URL: "{{protocol}}://{{hostname}}:9100"
3940
ST2_API_URL: "{{protocol}}://{{hostname}}:9101"
4041
ST2_AUTH_TOKEN: "{{token}}"
41-
cmd: "st2 pack install {{ pack_to_install_2 }}"
42+
cmd: "st2 pack install {{ pack_to_install_2_with_version }}"
4243
timeout: "{{test_timeout}}"
4344
on-success: test_installed_pack_2_version
4445
on-failure: error_handler
@@ -47,7 +48,7 @@ chain:
4748
name: test_installed_pack_2_version
4849
ref: tests.test_installed_pack_version
4950
params:
50-
installed_pack: "{{ pack_to_install_2 }}"
51+
installed_pack: "{{ pack_to_install_2_with_version }}"
5152
on-success: run_pack_tests_without_creating_virtualenv
5253
on-failure: error_handler
5354

0 commit comments

Comments
 (0)