| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
|
|
| from __future__ import absolute_import |
| import os |
| import pathlib |
| import re |
| import shutil |
| import warnings |
|
|
| import nox |
|
|
| FLAKE8_VERSION = "flake8==6.1.0" |
| BLACK_VERSION = "black==22.3.0" |
| ISORT_VERSION = "isort==5.10.1" |
| LINT_PATHS = ["docs", "google", "vertexai", "tests", "noxfile.py", "setup.py"] |
|
|
| DEFAULT_PYTHON_VERSION = "3.8" |
|
|
| DOCS_DEPENDENCIES = ( |
| "sphinx==5.0.2", |
| "alabaster", |
| "google-cloud-aiplatform[evaluation]", |
| "recommonmark", |
| ) |
|
|
| DOCFX_DEPENDENCIES = ( |
| "gcp-sphinx-docfx-yaml", |
| "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", |
| "alabaster", |
| "google-cloud-aiplatform[evaluation]", |
| "recommonmark", |
| ) |
|
|
| UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"] |
| UNIT_TEST_LANGCHAIN_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"] |
| UNIT_TEST_STANDARD_DEPENDENCIES = [ |
| "mock", |
| "asyncmock", |
| "pytest", |
| "pytest-cov", |
| "pytest-asyncio", |
| |
| "pytest-xdist", |
| ] |
| UNIT_TEST_EXTERNAL_DEPENDENCIES = [] |
| UNIT_TEST_LOCAL_DEPENDENCIES = [] |
| UNIT_TEST_DEPENDENCIES = [] |
| UNIT_TEST_EXTRAS = [ |
| "testing", |
| ] |
| UNIT_TEST_EXTRAS_BY_PYTHON = {} |
|
|
| SYSTEM_TEST_PYTHON_VERSIONS = ["3.10"] |
| SYSTEM_TEST_STANDARD_DEPENDENCIES = [ |
| "mock", |
| "pytest", |
| "google-cloud-testutils", |
| ] |
| SYSTEM_TEST_EXTERNAL_DEPENDENCIES = [] |
| SYSTEM_TEST_LOCAL_DEPENDENCIES = [] |
| SYSTEM_TEST_DEPENDENCIES = [] |
| SYSTEM_TEST_EXTRAS = [ |
| "testing", |
| ] |
| SYSTEM_TEST_EXTRAS_BY_PYTHON = {} |
|
|
| CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute() |
|
|
| |
| nox.options.sessions = [ |
| "unit", |
| "unit_ray", |
| "unit_langchain", |
| "system", |
| "cover", |
| "lint", |
| "lint_setup_py", |
| "blacken", |
| "docs", |
| ] |
|
|
| |
| nox.options.error_on_missing_interpreters = True |
|
|
|
|
| @nox.session(python=DEFAULT_PYTHON_VERSION) |
| def lint(session): |
| """Run linters. |
| |
| Returns a failure if the linters find linting errors or sufficiently |
| serious code quality issues. |
| """ |
| session.install(FLAKE8_VERSION, BLACK_VERSION) |
| session.run( |
| "black", |
| "--check", |
| "--diff", |
| *LINT_PATHS, |
| ) |
| session.run("flake8", *LINT_PATHS) |
|
|
|
|
| @nox.session(python=DEFAULT_PYTHON_VERSION) |
| def blacken(session): |
| """Run black. Format code to uniform standard.""" |
| session.install(BLACK_VERSION) |
| session.run( |
| "black", |
| *LINT_PATHS, |
| ) |
|
|
|
|
| @nox.session(python=DEFAULT_PYTHON_VERSION) |
| def format(session): |
| """ |
| Run isort to sort imports. Then run black |
| to format code to uniform standard. |
| """ |
| session.install(BLACK_VERSION, ISORT_VERSION) |
| |
| |
| session.run( |
| "isort", |
| "--fss", |
| *LINT_PATHS, |
| ) |
| session.run( |
| "black", |
| *LINT_PATHS, |
| ) |
|
|
|
|
| @nox.session(python=DEFAULT_PYTHON_VERSION) |
| 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") |
|
|
|
|
| def install_unittest_dependencies(session, *constraints): |
| standard_deps = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_DEPENDENCIES |
| session.install(*standard_deps, *constraints) |
|
|
| if UNIT_TEST_EXTERNAL_DEPENDENCIES: |
| warnings.warn( |
| "'unit_test_external_dependencies' is deprecated. Instead, please " |
| "use 'unit_test_dependencies' or 'unit_test_local_dependencies'.", |
| DeprecationWarning, |
| ) |
| session.install(*UNIT_TEST_EXTERNAL_DEPENDENCIES, *constraints) |
|
|
| if UNIT_TEST_LOCAL_DEPENDENCIES: |
| session.install(*UNIT_TEST_LOCAL_DEPENDENCIES, *constraints) |
|
|
| if UNIT_TEST_EXTRAS_BY_PYTHON: |
| extras = UNIT_TEST_EXTRAS_BY_PYTHON.get(session.python, []) |
| elif UNIT_TEST_EXTRAS: |
| extras = UNIT_TEST_EXTRAS |
| else: |
| extras = [] |
|
|
| if extras: |
| session.install("-e", f".[{','.join(extras)}]", *constraints) |
| else: |
| session.install("-e", ".", *constraints) |
|
|
|
|
| def default(session): |
| |
|
|
| constraints_path = str( |
| CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
| ) |
| install_unittest_dependencies(session, "-c", constraints_path) |
|
|
| |
| session.run( |
| "py.test", |
| "--quiet", |
| f"--junitxml=unit_{session.python}_sponge_log.xml", |
| "--cov=google", |
| "--cov-append", |
| "--cov-config=.coveragerc", |
| "--cov-report=", |
| "--cov-fail-under=0", |
| "--ignore=tests/unit/vertex_ray", |
| "--ignore=tests/unit/vertex_langchain", |
| "--ignore=tests/unit/architecture", |
| os.path.join("tests", "unit"), |
| *session.posargs, |
| ) |
|
|
| |
| session.run( |
| "py.test", |
| "--quiet", |
| f"--junitxml=unit_{session.python}_test_vertexai_import_sponge_log.xml", |
| os.path.join("tests", "unit", "architecture", "test_vertexai_import.py"), |
| *session.posargs, |
| ) |
|
|
|
|
| @nox.session(python=UNIT_TEST_PYTHON_VERSIONS) |
| def unit(session): |
| """Run the unit test suite.""" |
| |
| unit_genai_minimal_dependencies(session) |
|
|
| |
| default(session) |
|
|
|
|
| def unit_genai_minimal_dependencies(session): |
| |
|
|
| standard_deps = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_DEPENDENCIES |
| session.install(*standard_deps) |
| session.install("-e", ".") |
|
|
| |
| session.run( |
| "py.test", |
| "--quiet", |
| f"--junitxml=unit_{session.python}_sponge_log.xml", |
| |
| |
| os.path.join("tests", "unit", "vertexai", "test_generative_models.py"), |
| *session.posargs, |
| ) |
|
|
|
|
| @nox.session(python="3.10") |
| @nox.parametrize("ray", ["2.9.3", "2.33.0"]) |
| def unit_ray(session, ray): |
| |
|
|
| constraints_path = str(CURRENT_DIRECTORY / "testing" / f"constraints-ray-{ray}.txt") |
| standard_deps = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_DEPENDENCIES |
| session.install(*standard_deps, "-c", constraints_path) |
|
|
| |
| session.install("-e", ".[ray_testing]", "-c", constraints_path) |
|
|
| |
| session.run( |
| "py.test", |
| "--quiet", |
| f"--junitxml=unit_ray_{ray}_sponge_log.xml", |
| "--cov=google", |
| "--cov-append", |
| "--cov-config=.coveragerc", |
| "--cov-report=", |
| "--cov-fail-under=0", |
| os.path.join("tests", "unit", "vertex_ray"), |
| *session.posargs, |
| ) |
|
|
|
|
| @nox.session(python=UNIT_TEST_LANGCHAIN_PYTHON_VERSIONS) |
| def unit_langchain(session): |
| |
|
|
| constraints_path = str(CURRENT_DIRECTORY / "testing" / "constraints-langchain.txt") |
| standard_deps = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_DEPENDENCIES |
| session.install(*standard_deps, "-c", constraints_path) |
|
|
| |
| session.install("-e", ".[langchain_testing]", "-c", constraints_path) |
|
|
| |
| session.run( |
| "py.test", |
| "--quiet", |
| "--junitxml=unit_langchain_sponge_log.xml", |
| "--cov=google", |
| "--cov-append", |
| "--cov-config=.coveragerc", |
| "--cov-report=", |
| "--cov-fail-under=0", |
| os.path.join("tests", "unit", "vertex_langchain"), |
| *session.posargs, |
| ) |
|
|
|
|
| def install_systemtest_dependencies(session, *constraints): |
| |
| |
| |
| session.install("--pre", "grpcio!=1.52.0rc1") |
|
|
| session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints) |
|
|
| if SYSTEM_TEST_EXTERNAL_DEPENDENCIES: |
| session.install(*SYSTEM_TEST_EXTERNAL_DEPENDENCIES, *constraints) |
|
|
| if SYSTEM_TEST_LOCAL_DEPENDENCIES: |
| session.install("-e", *SYSTEM_TEST_LOCAL_DEPENDENCIES, *constraints) |
|
|
| if SYSTEM_TEST_DEPENDENCIES: |
| session.install("-e", *SYSTEM_TEST_DEPENDENCIES, *constraints) |
|
|
| if SYSTEM_TEST_EXTRAS_BY_PYTHON: |
| extras = SYSTEM_TEST_EXTRAS_BY_PYTHON.get(session.python, []) |
| elif SYSTEM_TEST_EXTRAS: |
| extras = SYSTEM_TEST_EXTRAS |
| else: |
| extras = [] |
|
|
| if extras: |
| session.install("-e", f".[{','.join(extras)}]", *constraints) |
| else: |
| session.install("-e", ".", *constraints) |
|
|
|
|
| @nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS) |
| def system(session): |
| """Run the system test suite.""" |
| constraints_path = str( |
| CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt" |
| ) |
| system_test_path = os.path.join("tests", "system.py") |
| system_test_folder_path = os.path.join("tests", "system") |
|
|
| |
| if os.environ.get("RUN_SYSTEM_TESTS", "true") == "false": |
| session.skip("RUN_SYSTEM_TESTS is set to false, skipping") |
| |
| if os.environ.get("GOOGLE_API_USE_CLIENT_CERTIFICATE", "false") == "true": |
| session.install("pyopenssl") |
|
|
| system_test_exists = os.path.exists(system_test_path) |
| system_test_folder_exists = os.path.exists(system_test_folder_path) |
| |
| if not system_test_exists and not system_test_folder_exists: |
| session.skip("System tests were not found") |
|
|
| install_systemtest_dependencies(session, "-c", constraints_path) |
|
|
| |
| if system_test_exists: |
| session.run( |
| "py.test", |
| "--quiet", |
| f"--junitxml=system_{session.python}_sponge_log.xml", |
| system_test_path, |
| *session.posargs, |
| ) |
| if system_test_folder_exists: |
| session.run( |
| "py.test", |
| "-v", |
| f"--junitxml=system_{session.python}_sponge_log.xml", |
| system_test_folder_path, |
| *session.posargs, |
| ) |
|
|
|
|
| @nox.session(python=DEFAULT_PYTHON_VERSION) |
| 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=85") |
|
|
| session.run("coverage", "erase") |
|
|
|
|
| @nox.session(python="3.9") |
| def docs(session): |
| """Build the docs for this library.""" |
|
|
| session.install("-e", ".") |
| session.install( |
| *DOCS_DEPENDENCIES, |
| "google-cloud-aiplatform[prediction]", |
| ) |
|
|
| shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
| session.run( |
| "sphinx-build", |
| "-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") |
| def docfx(session): |
| """Build the docfx yaml files for this library.""" |
|
|
| session.install("-e", ".") |
| session.install( |
| *DOCFX_DEPENDENCIES, |
| "google-cloud-aiplatform[prediction]", |
| ) |
|
|
| 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", ""), |
| ) |
|
|
|
|
| @nox.session(python="3.9") |
| def gemini_docs(session): |
| """Build the docs for library related to Gemini.""" |
|
|
| session.install("-e", ".") |
| session.install(*DOCS_DEPENDENCIES) |
|
|
| shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) |
| session.run( |
| "sphinx-build", |
| "-T", |
| "-N", |
| "-b", |
| "html", |
| "-d", |
| os.path.join("gemini_docs", "_build", "doctrees", ""), |
| os.path.join("gemini_docs", ""), |
| os.path.join("gemini_docs", "_build", "html", ""), |
| ) |
|
|
|
|
| @nox.session(python="3.10") |
| def gemini_docfx(session): |
| """Build the docfx yaml files for library related to Gemini.""" |
|
|
| session.install("-e", ".") |
| session.install(*DOCFX_DEPENDENCIES) |
|
|
| 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("gemini_docs", "_build", "doctrees", ""), |
| os.path.join("gemini_docs", ""), |
| os.path.join("gemini_docs", "_build", "html", ""), |
| ) |
|
|
|
|
| @nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS) |
| def prerelease_deps(session): |
| """Run all tests with prerelease versions of dependencies installed.""" |
|
|
| |
| session.install("-e", ".[all, tests, tracing]") |
| unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES |
| session.install(*unit_deps_all) |
| system_deps_all = ( |
| SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES |
| ) |
| session.install(*system_deps_all) |
|
|
| |
| |
| |
| with open( |
| CURRENT_DIRECTORY |
| / "testing" |
| / f"constraints-{UNIT_TEST_PYTHON_VERSIONS[0]}.txt", |
| encoding="utf-8", |
| ) as constraints_file: |
| constraints_text = constraints_file.read() |
|
|
| |
| constraints_deps = [ |
| match.group(1) |
| for match in re.finditer( |
| r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE |
| ) |
| ] |
|
|
| session.install(*constraints_deps) |
|
|
| prerel_deps = [ |
| "protobuf", |
| |
| "six", |
| "googleapis-common-protos", |
| |
| "grpcio!=1.52.0rc1", |
| "grpcio-status", |
| "google-api-core", |
| "proto-plus", |
| "google-cloud-testutils", |
| |
| "click", |
| ] |
|
|
| for dep in prerel_deps: |
| session.install("--pre", "--no-deps", "--upgrade", dep) |
|
|
| |
| other_deps = [ |
| "requests", |
| "google-auth", |
| ] |
| session.install(*other_deps) |
|
|
| |
| session.run( |
| "python", "-c", "import google.protobuf; print(google.protobuf.__version__)" |
| ) |
| session.run("python", "-c", "import grpc; print(grpc.__version__)") |
|
|
| session.run("py.test", "tests/unit") |
|
|
| system_test_path = os.path.join("tests", "system.py") |
| system_test_folder_path = os.path.join("tests", "system") |
|
|
| |
| if os.path.exists(system_test_path): |
| session.run( |
| "py.test", |
| "--verbose", |
| f"--junitxml=system_{session.python}_sponge_log.xml", |
| system_test_path, |
| *session.posargs, |
| ) |
| if os.path.exists(system_test_folder_path): |
| session.run( |
| "py.test", |
| "--verbose", |
| f"--junitxml=system_{session.python}_sponge_log.xml", |
| system_test_folder_path, |
| *session.posargs, |
| ) |
|
|