From b926f73309d1f60e9e70cb686fd223447961f5fd Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Wed, 30 Sep 2020 10:46:11 -0500 Subject: [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 --- test/integration/targets/inventory_kubevirt_conformance/runme.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 & -- cgit v1.2.1