|
| 1 | +#!/bin/bash |
| 2 | +# Copyright 2018 Google LLC |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | + |
| 16 | +set -eo pipefail |
| 17 | + |
| 18 | +if [[ -z "${PROJECT_ROOT:-}" ]]; then |
| 19 | + PROJECT_ROOT="github/python-shell" |
| 20 | +fi |
| 21 | + |
| 22 | +cd "${PROJECT_ROOT}" |
| 23 | + |
| 24 | +# Disable buffering, so that the logs stream through. |
| 25 | +export PYTHONUNBUFFERED=1 |
| 26 | + |
| 27 | +# Debug: show build environment |
| 28 | +env | grep KOKORO |
| 29 | + |
| 30 | +# Setup service account credentials. |
| 31 | +export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-account.json |
| 32 | + |
| 33 | +# Setup project id. |
| 34 | +export PROJECT_ID=$(cat "${KOKORO_GFILE_DIR}/project-id.json") |
| 35 | + |
| 36 | +# Remove old nox |
| 37 | +python3 -m pip uninstall --yes --quiet nox-automation |
| 38 | + |
| 39 | +# Install nox |
| 40 | +python3 -m pip install --upgrade --quiet nox |
| 41 | +python3 -m nox --version |
| 42 | + |
| 43 | +# If this is a continuous build, send the test log to the FlakyBot. |
| 44 | +# See https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot. |
| 45 | +if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"continuous"* ]]; then |
| 46 | + cleanup() { |
| 47 | + chmod +x $KOKORO_GFILE_DIR/linux_amd64/flakybot |
| 48 | + $KOKORO_GFILE_DIR/linux_amd64/flakybot |
| 49 | + } |
| 50 | + trap cleanup EXIT HUP |
| 51 | +fi |
| 52 | + |
| 53 | +# If NOX_SESSION is set, it only runs the specified session, |
| 54 | +# otherwise run all the sessions. |
| 55 | +if [[ -n "${NOX_SESSION:-}" ]]; then |
| 56 | + python3 -m nox -s ${NOX_SESSION:-} |
| 57 | +else |
| 58 | + python3 -m nox |
| 59 | +fi |
0 commit comments