aboutsummaryrefslogtreecommitdiff
path: root/.kokoro
diff options
context:
space:
mode:
authorYoshi Automation Bot <yoshi-automation@google.com>2021-01-18 02:34:02 -0800
committerGitHub <noreply@github.com>2021-01-18 10:34:02 +0000
commit4576f024c5c021e50e912ea5768213ab293c2593 (patch)
treef4543ff7be1b66289d8bef52ad6c189219379d62 /.kokoro
parentcc94ec86e652769e9d3d5cb6d6491efb8d76dd21 (diff)
downloadgoogle-api-python-client-4576f024c5c021e50e912ea5768213ab293c2593.tar.gz
chore(python): skip docfx in main presubmit (#1166)
This PR was generated using Autosynth. :rainbow: Synth log will be available here: https://source.cloud.google.com/results/invocations/0b6bbaa2-1b46-45ec-a4bd-ef2b18c764b2/targets - [ ] To automatically regenerate this PR, check this box. Source-Link: https://github.com/googleapis/synthtool/commit/fb53b6fb373b7c3edf4e55f3e8036bc6d73fa483
Diffstat (limited to '.kokoro')
-rwxr-xr-x.kokoro/build.sh16
1 files changed, 10 insertions, 6 deletions
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index 5dd2fa3cc..d2141e7e6 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -15,7 +15,11 @@
set -eo pipefail
-cd github/google-api-python-client
+if [[ -z "${PROJECT_ROOT:-}" ]]; then
+ PROJECT_ROOT="github/google-api-python-client"
+fi
+
+cd "${PROJECT_ROOT}"
# Disable buffering, so that the logs stream through.
export PYTHONUNBUFFERED=1
@@ -30,16 +34,16 @@ export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-account.json
export PROJECT_ID=$(cat "${KOKORO_GFILE_DIR}/project-id.json")
# Remove old nox
-python3.6 -m pip uninstall --yes --quiet nox-automation
+python3 -m pip uninstall --yes --quiet nox-automation
# Install nox
-python3.6 -m pip install --upgrade --quiet nox
-python3.6 -m nox --version
+python3 -m pip install --upgrade --quiet nox
+python3 -m nox --version
# If NOX_SESSION is set, it only runs the specified session,
# otherwise run all the sessions.
if [[ -n "${NOX_SESSION:-}" ]]; then
- python3.6 -m nox -s "${NOX_SESSION:-}"
+ python3 -m nox -s ${NOX_SESSION:-}
else
- python3.6 -m nox
+ python3 -m nox
fi