diff --git a/tests/integration/targets/elb_target/runme.sh b/tests/integration/targets/elb_target/runme.sh index fe0850e46c9..d900243cc89 100755 --- a/tests/integration/targets/elb_target/runme.sh +++ b/tests/integration/targets/elb_target/runme.sh @@ -1,13 +1,13 @@ #!/usr/bin/env bash set -eux - +unset PYTHONPATH # Test graceful failure for older versions of botocore -source virtualenv.sh -pip install 'botocore<=1.7.1' boto3 -ansible-playbook -i ../../inventory -v playbooks/version_fail.yml "$@" +python3 -mvenv --clear _venv +_venv/bin/pip install 'botocore==1.7.0' 'boto3==1.4.7' boto3 +ansible-playbook -i ../../inventory -v playbooks/version_fail.yml -e ansible_python_interpreter=$(pwd)/_venv/bin/python "$@" # Run full test suite -source virtualenv.sh -pip install 'botocore' 'boto3>=1.16.57' -ansible-playbook -i ../../inventory -v playbooks/full_test.yml "$@" +python3 -mvenv --clear _venv +_venv/bin/pip install 'botocore' 'boto3>=1.16.57' boto3 +ansible-playbook -i ../../inventory -v playbooks/full_test.yml -e ansible_python_interpreter=$(pwd)/_venv/bin/python "$@"