From 71434560437b6869bfc725153d9e9b0ede207f0e Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Tue, 18 Dec 2018 13:00:16 +0200 Subject: [PATCH] On Python 2 Azure needs the futures module this will prevent ImportError: No module named concurrent.futures see https://github.com/Azure/azure-sdk-for-python/issues/2166 --- tests/cli/test_build_and_deploy_azure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/test_build_and_deploy_azure.sh b/tests/cli/test_build_and_deploy_azure.sh index 8ccbb6ef..e2cf4873 100755 --- a/tests/cli/test_build_and_deploy_azure.sh +++ b/tests/cli/test_build_and_deploy_azure.sh @@ -52,7 +52,7 @@ rlJournalStart rlAssertRpm python2-pip fi - rlRun -t -c "pip install ansible[azure]" + rlRun -t -c "pip install ansible[azure] futures" rlPhaseEnd rlPhaseStartTest "compose start"