From feb9994e829cc57ebfad7787aaf097a952f29149 Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Thu, 12 Aug 2021 21:06:33 +0200 Subject: [PATCH] ec2_vol tests set requires to == rather than >= (so we can test the minimum we claim) (#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: #460 Reviewed-by: None --- tests/integration/targets/ec2_vol/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/targets/ec2_vol/tasks/main.yml b/tests/integration/targets/ec2_vol/tasks/main.yml index 2cbb44e2d65..41a9736836d 100644 --- a/tests/integration/targets/ec2_vol/tasks/main.yml +++ b/tests/integration/targets/ec2_vol/tasks/main.yml @@ -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 }}"