Skip to content

Commit

Permalink
ec2_vol tests set requires to == rather than >= (so we can test the m…
Browse files Browse the repository at this point in the history
…inimum we claim) (ansible-collections#453)

ec2_vol tests set botocore requires to == rather than >=

SUMMARY
We currently use >= which generally means that the latest version of botocore will be pulled in.  Given that we specify it's supposed to work with >= we should test the oldest possible version to ensure that we support at least that version.
ISSUE TYPE

Tests Pull Request

COMPONENT NAME
ec2_vol
ADDITIONAL INFORMATION
Depends-on: ansible-collections#460

Reviewed-by: None <None>
  • Loading branch information
tremble committed Aug 12, 2021
1 parent d8caa6a commit feb9994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/targets/ec2_vol/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

- pip:
name:
- 'boto3>=1.16.33'
- 'botocore>=1.13.0'
- 'boto3>=1.13.0'
- 'botocore==1.19.27'
- 'coverage<5'
- 'boto>=2.49.0'
virtualenv: "{{ virtualenv }}"
Expand Down

0 comments on commit feb9994

Please sign in to comment.