Skip to content

Commit

Permalink
Pip is not required on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
rain-on committed May 17, 2024
1 parent dd50d12 commit 719604e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/acceptance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,17 @@ set_shell_debug_level 2
REQUIRED_SYSTEM_COMMANDS=(
"kubectl"
"python3"
"pip"
"virtualenv"
)

if [[ "$OSTYPE" != "darwin"* ]]; then
# not required on OSX, as pip is installed a python package
# during python3 install (via homebrew) and is accessible
# once inside the virtualenv
REQUIRED_SYSTEM_COMMANDS+=(pip)

fi

if [ "$CLUSTER_PROVIDER" == kind ]; then
REQUIRED_SYSTEM_COMMANDS+=(kind)
fi
Expand Down

0 comments on commit 719604e

Please sign in to comment.