
Audit external interoperability versions
Source:R/interoperability-version-testing.R
audit_gazepoint_interoperability_versions.RdChecks whether declared bridge functions are exported and records the installed versions of optional R and Python dependencies. Missing optional dependencies are recorded for review rather than treated as core-package failures.
Usage
audit_gazepoint_interoperability_versions(
manifest = gazepoint_interoperability_manifest(),
include_python = TRUE,
strict = FALSE
)Arguments
- manifest
Interoperability manifest. Defaults to
gazepoint_interoperability_manifest().- include_python
Logical. Inspect the active Python environment through the optional
reticulatepackage.- strict
Logical. Stop when a required contract fails, a declared bridge function is missing, or an installed dependency is below its minimum tested version.
Value
An object of class "gazepoint_interoperability_audit" containing:
results: target-level compatibility findings;summary: aggregate pass and review counts;session: R, Python, operating-system, package, and timestamp metadata;manifest: the manifest used for the audit.