Skip to content

Commit

Permalink
Remove integration tests for unsupported versions of boto3/botocore
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble authored and GomathiselviS committed Sep 20, 2022
1 parent 07b086f commit 10202bc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 112 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,6 @@
state: present
register: tg

# Run tests for graceful failure with an old version of botocore
- include_tasks: test_multiple_actions_fail.yml
vars:
ansible_python_interpreter: "{{ virtualenv_interpreter }}"

# Run main tests
- include_tasks: test_alb_bad_listener_options.yml
- include_tasks: test_alb_ip_address_type_options.yml
Expand Down
28 changes: 0 additions & 28 deletions tests/integration/targets/elb_application_lb/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,4 @@
region: '{{ aws_region }}'
block:

# Prepare a virtual environment for multiple_actions_fail.yml
- set_fact:
virtualenv: "{{ remote_tmp_dir }}/virtualenv"
virtualenv_command: "{{ ansible_python_interpreter }} -m virtualenv"

- set_fact:
virtualenv_interpreter: "{{ virtualenv }}/bin/python"

- pip:
name: virtualenv

- pip:
name:
- 'botocore<1.10.30'
- boto3
- boto
- coverage<5
- cryptography
virtualenv: "{{ virtualenv }}"
virtualenv_command: "{{ virtualenv_command }}"
virtualenv_site_packages: no

- include_tasks: full_test.yml

always:

- file:
path: "{{ virtualenv }}"
state: absent

This file was deleted.

29 changes: 0 additions & 29 deletions tests/integration/targets/elb_application_lb_info/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,4 @@
security_token: '{{ security_token | default(omit) }}'
region: '{{ aws_region }}'
block:

# Prepare a virtual environment for multiple_actions_fail.yml
- set_fact:
virtualenv: "{{ remote_tmp_dir }}/virtualenv"
virtualenv_command: "{{ ansible_python_interpreter }} -m virtualenv"

- set_fact:
virtualenv_interpreter: "{{ virtualenv }}/bin/python"

- pip:
name: virtualenv

- pip:
name:
- 'botocore<1.10.30'
- boto3
- boto
- coverage<5
- cryptography
virtualenv: "{{ virtualenv }}"
virtualenv_command: "{{ virtualenv_command }}"
virtualenv_site_packages: no

- include_tasks: full_test.yml

always:

- file:
path: "{{ virtualenv }}"
state: absent

0 comments on commit 10202bc

Please sign in to comment.