Skip to content

Commit

Permalink
test(logging): install kubectl when running gke environment test (#4126)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSage committed May 19, 2021
1 parent d60a686 commit bfcc549
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/kokoro/environment.sh
Expand Up @@ -68,6 +68,11 @@ if [[ $ENVIRONMENT == *"appengine"* ]]; then
gcloud components install app-engine-go -q
fi

# If Kubernetes, install kubectl component
if [[ $ENVIRONMENT == *"kubernetes"* ]]; then
gcloud components install kubectl -q
fi

# Run the environment test for the specified GCP service
set +e
python3.7 -m nox --session "tests(language='go', platform='$ENVIRONMENT')"
Expand Down

0 comments on commit bfcc549

Please sign in to comment.