Files
open-metadata--openmetadata/ingestion/noxfile.py
T
wehub-resource-sync bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Has been cancelled
Java Checkstyle / java-checkstyle (push) Has been cancelled
Maven Collate Tests / maven-collate-ci (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Has been cancelled
Publish Package to Maven Central Repository / publish-maven-packages (push) Has been cancelled
OpenMetadata Service Unit Tests / Detect Changes (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Has been cancelled
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:35:45 +08:00

285 lines
9.1 KiB
Python

# Copyright 2025 Collate
# Licensed under the Collate Community License, Version 1.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Nox sessions for testing and formatting checks.
"""
import os
import nox
from nox.virtualenv import PassthroughEnv
# NOTE: This is still a work in progress! We still need to:
# - Fix ignored unit tests
# - Add integration tests
# - Address the TODOs in the code
# TODO: Add python 3.9. PYTHON 3.9 fails in Mac os due to problem with `psycopg2-binary` package
SUPPORTED_PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]
def get_python_versions():
# Check if we are in GitHub Actions (i.e., if the 'PYTHON_VERSIONS' environment variable is set)
if "PYTHON_VERSIONS" in os.environ:
# Return the list of Python versions passed from GitHub Actions matrix
python_versions = os.environ["PYTHON_VERSIONS"].split(",")
# if some versions are not supported, they will be ignored by nox
return python_versions # noqa: RET504
return SUPPORTED_PYTHON_VERSIONS
def install(session, *args, **kwargs):
"""Install packages unless running with --no-venv (packages already installed)."""
if not isinstance(session.virtualenv, PassthroughEnv):
session.install(*args, **kwargs)
@nox.session(
name="lint",
reuse_venv=True,
venv_backend="uv|venv",
)
def lint(session):
# Single-tool replacement for the old black + isort + pycln stack.
# Mirrors `make py_format_check` so local nox and Makefile stay in sync.
install(session, ".[dev]")
session.run("ruff", "check", ".", "../openmetadata-airflow-apis/")
session.run("ruff", "format", "--check", ".", "../openmetadata-airflow-apis/")
@nox.session(name="unit", reuse_venv=True, venv_backend="uv|venv", python=get_python_versions())
def unit(session):
session.install(".[all-dev-env, test-unit]")
# TODO: we need to install pip so that spaCy can install its dependencies
# we should find a way to avoid this
session.install("pip")
# TODO: We need to remove ignored test once they can be run properly within nox
# Run unit tests
ignored_tests = [
"test_ometa_endpoints.py",
"test_ometa_mlmodel.py",
"test_dbt.py",
"test_sample_usage.py",
"test_ssl_manager.py",
"test_usage_filter.py",
"test_suite/",
"profiler/test_profiler_partitions.py",
"profiler/test_workflow.py",
"workflow",
"topology",
]
ignore_args = [f"--ignore=tests/unit/{test}" for test in ignored_tests]
# run pytest with the ignore arguments and in parallel mode
session.run("pytest", "tests/unit/", *ignore_args)
# TEST PLUGINS
PLUGINS_TESTS = {
"great-expectations": "tests/unit/great_expectations",
}
PLUGINS = list(PLUGINS_TESTS.keys())
@nox.session(
name="unit-plugins",
reuse_venv=False,
venv_backend="uv|venv",
python=get_python_versions(),
)
@nox.parametrize("plugin", PLUGINS)
def unit_plugins(session, plugin):
session.install(".[test-unit]")
session.install(f".[{plugin}]")
# Assuming the plugin has its own tests in a specific directory
session.run("pytest", PLUGINS_TESTS[plugin])
# ---------------------------------------------------------------------------
# Static checks
# ---------------------------------------------------------------------------
@nox.session(
name="static-checks",
reuse_venv=True,
venv_backend="uv|venv",
python=get_python_versions(),
)
def static_checks(session):
install(session, ".[dev]")
# `--baselinemode=discard` fails the run on any *new* error not in the
# baseline (early-return path in basedpyright's BaselineHandler.write)
# while tolerating baseline entries that don't fire on the current
# platform (e.g. macOS arm64 vs Linux x86_64 stub drift). Critically, it
# does not write the baseline file, unlike `auto`. The default in CI
# would be `lock`, which exits 3 on any down-shift in error count and
# therefore can't accommodate platform drift between developer machines
# and the GitHub Actions runner.
session.run(
"basedpyright",
"-p",
"pyproject.toml",
"--baselinefile",
".basedpyright/baseline.json",
"--baselinemode=discard",
)
# ---------------------------------------------------------------------------
# Unit tests
# ---------------------------------------------------------------------------
@nox.session(
name="unit-tests",
reuse_venv=True,
venv_backend="uv|venv",
python=get_python_versions(),
)
def unit_tests(session):
"""Run Python unit tests with coverage and parallel execution.
Pass additional pytest arguments after --:
nox -s unit-tests -- -v # verbose output
nox -s unit-tests -- -k test_name # run specific test
nox -s unit-tests -- tests/unit/topology/ # run specific directory
"""
install(session, ".[dev]")
install(session, ".[all]")
install(session, ".[test]")
# Separate test paths from pytest flags in posargs
args = list(session.posargs)
test_paths = [a for a in args if not a.startswith("-")]
extra_flags = [a for a in args if a.startswith("-")]
pytest_args = [
"-c",
"pyproject.toml",
"--cov=metadata",
"--cov-branch",
"--cov-config=pyproject.toml",
"--junitxml=junit/test-results-unit.xml",
"-n",
"auto",
"--dist",
"loadfile",
]
pytest_args.extend(test_paths or ["tests/unit/"])
pytest_args.extend(extra_flags)
session.run("pytest", *pytest_args)
# ---------------------------------------------------------------------------
# Integration tests
# ---------------------------------------------------------------------------
@nox.session(
name="integration-tests",
reuse_venv=True,
venv_backend="uv|venv",
python=get_python_versions(),
)
def integration_tests(session):
"""Run Python integration tests with coverage.
By default includes --cov-append for local use (run after unit tests).
Pass --standalone to produce standalone coverage for CI split jobs.
Examples:
nox -s integration-tests # local, appends to .coverage
nox -s integration-tests -- --standalone # CI, standalone .coverage
"""
install(session, ".[all]")
install(session, ".[test]")
args = list(session.posargs)
standalone = "--standalone" in args
if standalone:
args.remove("--standalone")
workers = os.environ.get("PYTEST_INTEGRATION_WORKERS", "0")
if "--workers" in args:
idx = args.index("--workers")
workers = args[idx + 1]
args = args[:idx] + args[idx + 2 :]
# Separate test paths from pytest flags in posargs
test_paths = [a for a in args if not a.startswith("-")]
extra_flags = [a for a in args if a.startswith("-")]
pytest_args = [
"-c",
"pyproject.toml",
"--cov=metadata",
"--cov-branch",
"--cov-config=pyproject.toml",
"--junitxml=junit/test-results-integration.xml",
]
if not standalone:
pytest_args.append("--cov-append")
use_xdist = int(workers) > 0
if use_xdist:
pytest_args.extend([f"-n{workers}", "--dist=loadgroup"])
pytest_args.extend(test_paths or ["tests/integration/"])
pytest_args.extend(extra_flags)
session.run("pytest", *pytest_args)
# ---------------------------------------------------------------------------
# Combine coverage
# ---------------------------------------------------------------------------
@nox.session(
name="combine-coverage",
reuse_venv=True,
venv_backend="uv|venv",
)
def combine_coverage(session):
"""Combine coverage from multiple test runs and generate reports.
Used in CI to merge coverage artifacts from separate unit and
integration jobs. Expects .coverage files under coverage-data/.
NOTE: The ``sed -i`` step uses GNU sed syntax and only works on Linux
(CI runners). On macOS, BSD sed requires a backup-extension argument
(``sed -i ''``), so running this session locally will fail at that step.
Example:
nox -s combine-coverage
"""
install(session, "coverage[toml]")
session.run("coverage", "combine")
session.run(
"coverage",
"report",
"--rcfile=pyproject.toml",
success_codes=[0, 1],
)
session.run(
"coverage",
"xml",
"--rcfile=pyproject.toml",
"-o",
"coverage.xml",
success_codes=[0, 1],
)
session.run(
"sed",
r's|filename="[^"]*\(/metadata/[^"]*"\)|filename="src\1|g',
"coverage.xml",
"-i",
external=True,
)
session.run("mv", "coverage.xml", "ci-coverage.xml", external=True)