|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import absolute_import |
|
|
|
from functools import wraps |
|
import pathlib |
|
import os |
|
import re |
|
import shutil |
|
import nox |
|
import time |
|
|
|
|
|
MYPY_VERSION = "mypy==1.6.1" |
|
PYTYPE_VERSION = "pytype==2021.4.9" |
|
BLACK_VERSION = "black==23.7.0" |
|
BLACK_PATHS = ( |
|
"benchmark", |
|
"docs", |
|
"google", |
|
"samples", |
|
"samples/tests", |
|
"tests", |
|
"noxfile.py", |
|
"setup.py", |
|
) |
|
|
|
DEFAULT_PYTHON_VERSION = "3.8" |
|
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8", "3.11", "3.12"] |
|
UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.12"] |
|
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute() |
|
|
|
|
|
def _calculate_duration(func): |
|
"""This decorator prints the execution time for the decorated function.""" |
|
|
|
@wraps(func) |
|
def wrapper(*args, **kwargs): |
|
start = time.monotonic() |
|
result = func(*args, **kwargs) |
|
end = time.monotonic() |
|
total_seconds = round(end - start) |
|
hours = total_seconds // 3600 |
|
remaining_seconds = total_seconds % 3600 |
|
minutes = remaining_seconds // 60 |
|
seconds = remaining_seconds % 60 |
|
human_time = f"{hours:}:{minutes:0>2}:{seconds:0>2}" |
|
print(f"Session ran in {total_seconds} seconds ({human_time})") |
|
return result |
|
|
|
return wrapper |
|
|
|
|
|
|
|
nox.options.sessions = [ |
|
"unit_noextras", |
|
"unit", |
|
"system", |
|
"snippets", |
|
"cover", |
|
"lint", |
|
"lint_setup_py", |
|
"blacken", |
|
"mypy", |
|
"mypy_samples", |
|
"pytype", |
|
"docs", |
|
] |
|
|
|
|
|
def default(session, install_extras=True): |
|
"""Default unit test session. |
|
|
|
This is intended to be run **without** an interpreter set, so |
|
that the current ``python`` (on the ``PATH``) or the version of |
|
Python corresponding to the ``nox`` binary the ``PATH`` can |
|
run the tests. |
|
""" |
|
|
|
constraints_path = str( |
|
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
|
) |
|
|
|
|
|
session.install( |
|
"pytest", |
|
"google-cloud-testutils", |
|
"pytest-cov", |
|
"freezegun", |
|
"-c", |
|
constraints_path, |
|
) |
|
|
|
if install_extras and session.python in ["3.11", "3.12"]: |
|
install_target = ".[bqstorage,ipywidgets,pandas,tqdm,opentelemetry]" |
|
elif install_extras: |
|
install_target = ".[all]" |
|
else: |
|
install_target = "." |
|
session.install("-e", install_target, "-c", constraints_path) |
|
session.run("python", "-m", "pip", "freeze") |
|
|
|
|
|
session.run( |
|
"py.test", |
|
"--quiet", |
|
"--cov=google/cloud/bigquery", |
|
"--cov=tests/unit", |
|
"--cov-append", |
|
"--cov-config=.coveragerc", |
|
"--cov-report=", |
|
"--cov-fail-under=0", |
|
os.path.join("tests", "unit"), |
|
*session.posargs, |
|
) |
|
|
|
|
|
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS) |
|
@_calculate_duration |
|
def unit(session): |
|
"""Run the unit test suite.""" |
|
|
|
default(session) |
|
|
|
|
|
@nox.session(python=[UNIT_TEST_PYTHON_VERSIONS[0], UNIT_TEST_PYTHON_VERSIONS[-1]]) |
|
@_calculate_duration |
|
def unit_noextras(session): |
|
"""Run the unit test suite.""" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if session.python == UNIT_TEST_PYTHON_VERSIONS[0]: |
|
session.install("pyarrow==1.0.0") |
|
|
|
default(session, install_extras=False) |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def mypy(session): |
|
"""Run type checks with mypy.""" |
|
|
|
session.install("-e", ".[all]") |
|
session.install(MYPY_VERSION) |
|
|
|
|
|
|
|
session.install( |
|
"types-protobuf", |
|
"types-python-dateutil", |
|
"types-requests", |
|
"types-setuptools", |
|
) |
|
session.run("mypy", "-p", "google", "--show-traceback") |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def pytype(session): |
|
"""Run type checks with pytype.""" |
|
|
|
|
|
|
|
|
|
session.install("attrs==20.3.0") |
|
session.install("-e", ".[all]") |
|
session.install(PYTYPE_VERSION) |
|
|
|
session.run("pytype", "-P", ".", "google/cloud/bigquery") |
|
|
|
|
|
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS) |
|
@_calculate_duration |
|
def system(session): |
|
"""Run the system test suite.""" |
|
|
|
constraints_path = str( |
|
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
|
) |
|
|
|
|
|
if not os.environ.get("GOOGLE_APPLICATION_CREDENTIALS", ""): |
|
session.skip("Credentials must be set via environment variable.") |
|
|
|
|
|
|
|
|
|
session.install("--pre", "grpcio!=1.49.0rc1", "-c", constraints_path) |
|
|
|
|
|
session.install( |
|
"pytest", "psutil", "google-cloud-testutils", "-c", constraints_path |
|
) |
|
if os.environ.get("GOOGLE_API_USE_CLIENT_CERTIFICATE", "") == "true": |
|
|
|
session.install("google-cloud-storage", "pyopenssl") |
|
else: |
|
session.install("google-cloud-storage", "-c", constraints_path) |
|
|
|
|
|
session.install("google-cloud-datacatalog", "-c", constraints_path) |
|
|
|
if session.python in ["3.11", "3.12"]: |
|
extras = "[bqstorage,ipywidgets,pandas,tqdm,opentelemetry]" |
|
else: |
|
extras = "[all]" |
|
session.install("-e", f".{extras}", "-c", constraints_path) |
|
|
|
|
|
session.run("python", "-m", "pip", "freeze") |
|
|
|
|
|
session.run( |
|
"py.test", |
|
"--quiet", |
|
os.path.join("tests", "system"), |
|
*session.posargs, |
|
) |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def mypy_samples(session): |
|
"""Run type checks with mypy.""" |
|
|
|
session.install("pytest") |
|
for requirements_path in CURRENT_DIRECTORY.glob("samples/*/requirements.txt"): |
|
session.install("-r", str(requirements_path)) |
|
session.install(MYPY_VERSION) |
|
|
|
|
|
|
|
session.install("-e", ".[all]") |
|
|
|
|
|
|
|
session.install( |
|
"types-mock", |
|
"types-pytz", |
|
"types-protobuf!=4.24.0.20240106", |
|
"types-python-dateutil", |
|
"types-requests", |
|
"types-setuptools", |
|
) |
|
|
|
session.install("typing-extensions") |
|
|
|
session.run( |
|
"mypy", |
|
"--config-file", |
|
str(CURRENT_DIRECTORY / "samples" / "mypy.ini"), |
|
"--no-incremental", |
|
"samples/", |
|
) |
|
|
|
|
|
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS) |
|
@_calculate_duration |
|
def snippets(session): |
|
"""Run the snippets test suite.""" |
|
|
|
constraints_path = str( |
|
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
|
) |
|
|
|
|
|
session.install("pytest", "google-cloud-testutils", "-c", constraints_path) |
|
session.install("google-cloud-storage", "-c", constraints_path) |
|
session.install("grpcio", "-c", constraints_path) |
|
|
|
if session.python in ["3.11", "3.12"]: |
|
extras = "[bqstorage,ipywidgets,pandas,tqdm,opentelemetry]" |
|
else: |
|
extras = "[all]" |
|
session.install("-e", f".{extras}", "-c", constraints_path) |
|
|
|
|
|
|
|
|
|
session.run("py.test", os.path.join("docs", "snippets.py"), *session.posargs) |
|
session.run( |
|
"py.test", |
|
"samples", |
|
"--ignore=samples/desktopapp", |
|
"--ignore=samples/magics", |
|
"--ignore=samples/geography", |
|
"--ignore=samples/notebooks", |
|
"--ignore=samples/snippets", |
|
*session.posargs, |
|
) |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def cover(session): |
|
"""Run the final coverage report. |
|
|
|
This outputs the coverage report aggregating coverage from the unit |
|
test runs (not system test runs), and then erases coverage data. |
|
""" |
|
|
|
session.install("coverage", "pytest-cov") |
|
session.run("coverage", "report", "--show-missing", "--fail-under=100") |
|
session.run("coverage", "erase") |
|
|
|
|
|
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS) |
|
@_calculate_duration |
|
def prerelease_deps(session): |
|
"""Run all tests with prerelease versions of dependencies installed. |
|
|
|
https://github.com/googleapis/python-bigquery/issues/95 |
|
""" |
|
|
|
|
|
session.install( |
|
"--extra-index-url", |
|
"https://pypi.fury.io/arrow-nightlies/", |
|
"--prefer-binary", |
|
"--pre", |
|
"--upgrade", |
|
"pyarrow", |
|
) |
|
session.install( |
|
"--extra-index-url", |
|
"https://pypi.anaconda.org/scipy-wheels-nightly/simple", |
|
"--prefer-binary", |
|
"--pre", |
|
"--upgrade", |
|
"pandas", |
|
) |
|
session.install( |
|
"--pre", |
|
"--upgrade", |
|
"IPython", |
|
"ipykernel", |
|
"ipywidgets", |
|
"tqdm", |
|
"git+https://github.com/pypa/packaging.git", |
|
) |
|
|
|
session.install( |
|
"--pre", |
|
"--upgrade", |
|
"google-api-core", |
|
"google-cloud-bigquery-storage", |
|
"google-cloud-core", |
|
"google-resumable-media", |
|
|
|
"grpcio!=1.49.0rc1", |
|
) |
|
session.install( |
|
"freezegun", |
|
"google-cloud-datacatalog", |
|
"google-cloud-storage", |
|
"google-cloud-testutils", |
|
"psutil", |
|
"pytest", |
|
"pytest-cov", |
|
) |
|
|
|
|
|
|
|
|
|
with open( |
|
CURRENT_DIRECTORY |
|
/ "testing" |
|
/ f"constraints-{UNIT_TEST_PYTHON_VERSIONS[0]}.txt", |
|
encoding="utf-8", |
|
) as constraints_file: |
|
constraints_text = constraints_file.read() |
|
|
|
|
|
deps = [ |
|
match.group(1) |
|
for match in re.finditer( |
|
r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE |
|
) |
|
] |
|
|
|
|
|
|
|
session.install(*deps) |
|
session.install("--no-deps", "-e", ".[all]") |
|
|
|
|
|
session.run("python", "-c", "import grpc; print(grpc.__version__)") |
|
session.run("python", "-c", "import pandas; print(pandas.__version__)") |
|
session.run("python", "-c", "import pyarrow; print(pyarrow.__version__)") |
|
session.run("python", "-m", "pip", "freeze") |
|
|
|
|
|
session.run("py.test", "tests/unit") |
|
session.run("py.test", "tests/system") |
|
session.run("py.test", "samples/tests") |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def lint(session): |
|
"""Run linters. |
|
|
|
Returns a failure if the linters find linting errors or sufficiently |
|
serious code quality issues. |
|
""" |
|
|
|
session.install("flake8", BLACK_VERSION) |
|
session.install("-e", ".") |
|
session.run("flake8", os.path.join("google", "cloud", "bigquery")) |
|
session.run("flake8", "tests") |
|
session.run("flake8", os.path.join("docs", "samples")) |
|
session.run("flake8", os.path.join("docs", "snippets.py")) |
|
session.run("flake8", "benchmark") |
|
session.run("black", "--check", *BLACK_PATHS) |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def lint_setup_py(session): |
|
"""Verify that setup.py is valid (including RST check).""" |
|
|
|
session.install("docutils", "Pygments") |
|
session.run("python", "setup.py", "check", "--restructuredtext", "--strict") |
|
|
|
|
|
@nox.session(python=DEFAULT_PYTHON_VERSION) |
|
@_calculate_duration |
|
def blacken(session): |
|
"""Run black. |
|
Format code to uniform standard. |
|
""" |
|
|
|
session.install(BLACK_VERSION) |
|
session.run("black", *BLACK_PATHS) |
|
|
|
|
|
@nox.session(python="3.9") |
|
@_calculate_duration |
|
def docs(session): |
|
"""Build the docs.""" |
|
|
|
session.install( |
|
|
|
|
|
|
|
|
|
"sphinxcontrib-applehelp==1.0.4", |
|
"sphinxcontrib-devhelp==1.0.2", |
|
"sphinxcontrib-htmlhelp==2.0.1", |
|
"sphinxcontrib-qthelp==1.0.3", |
|
"sphinxcontrib-serializinghtml==1.1.5", |
|
"sphinx==4.5.0", |
|
"alabaster", |
|
"recommonmark", |
|
) |
|
session.install("google-cloud-storage") |
|
session.install("-e", ".[all]") |
|
|
|
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
|
session.run( |
|
"sphinx-build", |
|
"-W", |
|
"-T", |
|
"-N", |
|
"-b", |
|
"html", |
|
"-d", |
|
os.path.join("docs", "_build", "doctrees", ""), |
|
os.path.join("docs", ""), |
|
os.path.join("docs", "_build", "html", ""), |
|
) |
|
|
|
|
|
@nox.session(python="3.10") |
|
@_calculate_duration |
|
def docfx(session): |
|
"""Build the docfx yaml files for this library.""" |
|
|
|
session.install("-e", ".") |
|
session.install( |
|
|
|
|
|
|
|
|
|
"sphinxcontrib-applehelp==1.0.4", |
|
"sphinxcontrib-devhelp==1.0.2", |
|
"sphinxcontrib-htmlhelp==2.0.1", |
|
"sphinxcontrib-qthelp==1.0.3", |
|
"sphinxcontrib-serializinghtml==1.1.5", |
|
"gcp-sphinx-docfx-yaml", |
|
"alabaster", |
|
"recommonmark", |
|
) |
|
|
|
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
|
session.run( |
|
"sphinx-build", |
|
"-T", |
|
"-N", |
|
"-D", |
|
( |
|
"extensions=sphinx.ext.autodoc," |
|
"sphinx.ext.autosummary," |
|
"docfx_yaml.extension," |
|
"sphinx.ext.intersphinx," |
|
"sphinx.ext.coverage," |
|
"sphinx.ext.napoleon," |
|
"sphinx.ext.todo," |
|
"sphinx.ext.viewcode," |
|
"recommonmark" |
|
), |
|
"-b", |
|
"html", |
|
"-d", |
|
os.path.join("docs", "_build", "doctrees", ""), |
|
os.path.join("docs", ""), |
|
os.path.join("docs", "_build", "html", ""), |
|
) |
|
|