[tests] --no-use-pep517 in kubevirt_conformance (#72015)

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>
pull/72029/head
Rick Elrod 4 years ago committed by GitHub
parent 7647d2fa89
commit 609667c7d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 &

Loading…
Cancel
Save