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
24 changes: 12 additions & 12 deletions actions/workflows/st2_e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ workflows:
timeout: 600
on-success:
- test_quickstart_python
- test_quickstart_key_triggers
- test_quickstart_trace
- test_quickstart_run_pack_tests_tool
test_quickstart_python:
Expand All @@ -258,15 +257,6 @@ workflows:
timeout: 600
# on-success:
# - test_quickstart_key_triggers
test_quickstart_key_triggers:
action: core.remote
input:
hosts: <% $.host %>
env: <% $.env %>
cmd: st2 run tests.test_key_triggers <% $.st2_cli_args %>
timeout: 600
# on-success:
# - test_quickstart_trace
test_quickstart_trace:
action: core.remote
input:
Expand All @@ -284,8 +274,19 @@ workflows:
# Note: This test is only available and working in StackStorm >= 2.3dev
cmd: "st2 action get tests.test_run_pack_tests_tool ; if [ $? -eq 0 ]; then st2 run tests.test_run_pack_tests_tool <% $.st2_cli_args %>; else echo 'run_pack_tests_tool tests not available'; fi"
timeout: 600
# Keep timer_rules sequential
# Keep key_triggers and timer_rules tests sequential.
# test_quickstart_key_triggers conflicts with test_quickstart_python (race) so
# they can't run at the same time.
on-success:
- test_quickstart_key_triggers
test_quickstart_key_triggers:
action: core.remote
input:
hosts: <% $.host %>
env: <% $.env %>
cmd: st2 run tests.test_key_triggers <% $.st2_cli_args %>
timeout: 600
on-success:
- test_quickstart_timer_rules
test_quickstart_timer_rules:
action: core.remote
Expand All @@ -295,7 +296,6 @@ workflows:
cmd: st2 run tests.test_timer_rule <% $.st2_cli_args %>
timeout: 600


test_mistral:
type: direct
input:
Expand Down