1#!/bin/bash 2 3set -eo pipefail 4 5cd github/google-api-python-client 6 7# Disable buffering, so that the logs stream through. 8export PYTHONUNBUFFERED=1 9 10python3 -m pip install --upgrade tox 11 12# Run tests 13tox 14