Skip to content

Commit

Permalink
CI test fixups (#1859) (#1860)
Browse files Browse the repository at this point in the history
[PR #1859/25d1e4d1 backport][stable-5] CI test fixups

This is a backport of PR #1859 as merged into main (25d1e4d).
SUMMARY
ansible/ansible milestone branch just got updated and introduced some breaking changes for us
ISSUE TYPE

Bugfix Pull Request

COMPONENT NAME
ecs_cluster
dynamodb_table
ADDITIONAL INFORMATION
  • Loading branch information
patchback[bot] authored Jul 3, 2023
1 parent ac968b9 commit 26f6557
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/20230627-ci-fixup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trivial:
- CI fixup - ``include:`` should be ``include_tasks:``.
2 changes: 1 addition & 1 deletion tests/integration/targets/dynamodb_table/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
security_token: "{{ security_token | default(omit) }}"
region: "{{ aws_region }}"
block:
- include: "test_pay_per_request.yml"
- include_tasks: "test_pay_per_request.yml"

# ==============================================

Expand Down
8 changes: 4 additions & 4 deletions tests/integration/targets/ecs_cluster/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
region: '{{ aws_region }}'

block:
- include: 01_create_requirements.yml
- include: 10_ecs_cluster.yml
- include: 20_ecs_service.yml
- include_tasks: 01_create_requirements.yml
- include_tasks: 10_ecs_cluster.yml
- include_tasks: 20_ecs_service.yml

always:
- include: 99_terminate_everything.yml
- include_tasks: 99_terminate_everything.yml

0 comments on commit 26f6557

Please sign in to comment.