From 177e62a8965154e38462e1bfcc1363b976496b60 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Tue, 18 Dec 2018 15:17:45 +0200 Subject: [PATCH] Workaround openstacksdk dependency issue See: https://github.com/openstack/openstacksdk/commit/fd61b546796af5847a92774b064eb21e2f0a22e1#diff-b4ef698db8ca845e5845c4618278f29a Note: may also affect master/rhel8-branch but haven't seen it so far. For master we can do: dnf install ansible python3-openstacksdk Not so easy on RHEL 7 --- tests/cli/test_build_and_deploy_openstack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/test_build_and_deploy_openstack.sh b/tests/cli/test_build_and_deploy_openstack.sh index eea61495..04fcff9f 100755 --- a/tests/cli/test_build_and_deploy_openstack.sh +++ b/tests/cli/test_build_and_deploy_openstack.sh @@ -40,7 +40,7 @@ rlJournalStart rlAssertRpm python2-pip fi - rlRun -t -c "pip install ansible openstacksdk" + rlRun -t -c "pip install ansible openstacksdk 'dogpile.cache>=0.6.2,<0.7.0'" rlPhaseEnd rlPhaseStartTest "compose start"