Skip to content

Commit

Permalink
[tests] --no-use-pep517 in kubevirt_conformance (ansible#72015)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
relrod committed Sep 30, 2020
1 parent 7647d2f commit 609667c
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 &

Expand Down

0 comments on commit 609667c

Please sign in to comment.