4b6817381b
Benchmark image — build + push to ECR (any adapter) / build + push (push) Waiting to run
CI / quality (ubuntu-latest) (push) Waiting to run
CI / test (tools-runtime) (push) Waiting to run
CI / test (e2e-general) (push) Waiting to run
CI / test (cli-runtime) (push) Waiting to run
CI / test (e2e-provider-and-openclaw) (push) Waiting to run
CI / test (integrations-and-misc) (push) Waiting to run
CI / coverage-report (push) Blocked by required conditions
CI / test-kubernetes (push) Waiting to run
CI / should-run-thorough (push) Waiting to run
CI / test-thorough (cloudwatch-demo) (push) Blocked by required conditions
CI / test-thorough (flink-ecs) (push) Blocked by required conditions
CI / test-thorough (upstream-lambda) (push) Blocked by required conditions
CI / test-thorough (prefect-ecs-fargate) (push) Blocked by required conditions
CodeQL / Analyze (python) (push) Waiting to run
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Blocked by required conditions
Release / publish-release (push) Blocked by required conditions
Release / publish-main-release (push) Blocked by required conditions
Release / prepare (push) Waiting to run
Release / verify (push) Blocked by required conditions
Release / build-python-dist (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Blocked by required conditions
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Waiting to run
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""Verification plugin registry — integration-agnostic decorator + lookup.
|
|
|
|
Each integration verifier registers itself via :func:`register_verifier`
|
|
(or the higher-order helpers :func:`register_probe_verifier` and
|
|
:func:`register_validation_verifier` for the two common shapes).
|
|
``integrations.registry`` and ``integrations.verify`` query
|
|
the registry instead of importing every verifier by name. Adding a new
|
|
verifier becomes a single new ``integrations/<name>/verifier.py`` file with one
|
|
registration call — the loader auto-discovers it.
|
|
|
|
This package is shared verification infrastructure, not a vendor integration
|
|
package. Vendor-local verifier modules import and register through this API,
|
|
which is why ``integrations._verifiers_loader`` intentionally skips scanning
|
|
``integrations.verification`` as an integration package.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from integrations.verification.probe import (
|
|
build_probe_verifier,
|
|
register_probe_verifier,
|
|
result,
|
|
)
|
|
from integrations.verification.registry import (
|
|
VerifierFn,
|
|
get_verifier,
|
|
list_verifiers,
|
|
register_verifier,
|
|
)
|
|
from integrations.verification.validation import (
|
|
build_validation_verifier,
|
|
register_validation_verifier,
|
|
verify_with_validation_result,
|
|
)
|
|
|
|
__all__ = [
|
|
"VerifierFn",
|
|
"build_probe_verifier",
|
|
"build_validation_verifier",
|
|
"get_verifier",
|
|
"list_verifiers",
|
|
"register_probe_verifier",
|
|
"register_validation_verifier",
|
|
"register_verifier",
|
|
"result",
|
|
"verify_with_validation_result",
|
|
]
|