summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-09-30 10:46:11 -0500
committerGitHub <noreply@github.com>2020-09-30 10:46:11 -0500
commitb926f73309d1f60e9e70cb686fd223447961f5fd (patch)
tree3fbafdf3721ca804cf69aeb61c37d8ed1e4e87c5
parentaac6ed13e6edd2ba431b3afdc54624abf65c7674 (diff)
downloadansible-b926f73309d1f60e9e70cb686fd223447961f5fd.tar.gz
[tests] --no-use-pep517 in kubevirt_conformance (#72016)
Change: - This enables the inventory_kubevirt_conformance test to pass again on freebsd. - This was due to a google-auth version bump. The dep chain looks like this: openshift -> kubernetes -> google-auth -> aiohttp -> multidict Test Plan: - ansible-test integration inventory_kubevirt_conformance --remote freebsd/12.0 Signed-off-by: Rick Elrod <rick@elrod.me>
-rwxr-xr-xtest/integration/targets/inventory_kubevirt_conformance/runme.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/integration/targets/inventory_kubevirt_conformance/runme.sh b/test/integration/targets/inventory_kubevirt_conformance/runme.sh
index dcaf080345..d9102d77ff 100755
--- a/test/integration/targets/inventory_kubevirt_conformance/runme.sh
+++ b/test/integration/targets/inventory_kubevirt_conformance/runme.sh
@@ -19,7 +19,12 @@ source virtualenv.sh
#
export SETUPTOOLS_USE_DISTUTILS=stdlib
-pip install openshift -c constraints.txt
+NO_PEP=""
+if [[ "$(uname)" == "FreeBSD" ]]; then
+ NO_PEP="--no-use-pep517"
+fi
+
+pip install openshift -c constraints.txt $NO_PEP
./server.py &