blob: 41a88d599ad13d8a9b3e5ceda2ee09e1a53dfa5e [file] [log] [blame]
Bu Sun Kime72202e2020-02-19 17:58:47 -08001#!/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
16set -eo pipefail
17
Yoshi Automation Bot84cfb972021-01-15 11:07:01 -080018if [[ -z "${PROJECT_ROOT:-}" ]]; then
19 PROJECT_ROOT="github/python-api-core"
20fi
21
22cd "${PROJECT_ROOT}"
Bu Sun Kime72202e2020-02-19 17:58:47 -080023
24# Disable buffering, so that the logs stream through.
25export PYTHONUNBUFFERED=1
26
27# Debug: show build environment
28env | grep KOKORO
29
30# Setup service account credentials.
31export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-account.json
32
33# Setup project id.
34export PROJECT_ID=$(cat "${KOKORO_GFILE_DIR}/project-id.json")
35
36# Remove old nox
Yoshi Automation Bot84cfb972021-01-15 11:07:01 -080037python3 -m pip uninstall --yes --quiet nox-automation
Bu Sun Kime72202e2020-02-19 17:58:47 -080038
39# Install nox
Yoshi Automation Bot84cfb972021-01-15 11:07:01 -080040python3 -m pip install --upgrade --quiet nox
41python3 -m nox --version
Bu Sun Kime72202e2020-02-19 17:58:47 -080042
Tres Seaver000d0a02020-10-06 15:47:28 -040043# If NOX_SESSION is set, it only runs the specified session,
44# otherwise run all the sessions.
45if [[ -n "${NOX_SESSION:-}" ]]; then
Yoshi Automation Bot84cfb972021-01-15 11:07:01 -080046 python3 -m nox -s ${NOX_SESSION:-}
Tres Seaver000d0a02020-10-06 15:47:28 -040047else
Yoshi Automation Bot84cfb972021-01-15 11:07:01 -080048 python3 -m nox
Tres Seaver000d0a02020-10-06 15:47:28 -040049fi