From 78cb32ccb79b14776009e87f084b49efa61bc94c Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 11 Oct 2017 19:18:16 -0700 Subject: [PATCH] Update Azure tests to limit cryptography version. (#31616) (cherry picked from commit 8acb901bf2ff1c7bda0f092af970a68ece16ae72) --- test/integration/targets/setup_azure/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/integration/targets/setup_azure/tasks/main.yml b/test/integration/targets/setup_azure/tasks/main.yml index 17132a497b7..8aee658c1da 100644 --- a/test/integration/targets/setup_azure/tasks/main.yml +++ b/test/integration/targets/setup_azure/tasks/main.yml @@ -1,2 +1,8 @@ +- name: install cryptography requirement + # preempt the installation of cryptography from requirements-azure.txt to limit the version installed + # requests[security] requires cryptography >= 1.3.4 + # cryptography 2.1 requires pip 8.1.2+ + command: pip install cryptography>=1.3.4,<2.1 + - pip: requirements: '{{ role_path }}/../../../../packaging/requirements/requirements-azure.txt'