missing_files#

Health check: Missing files in packages.

Functions#

excluded_files_check(→ bool)

Check if a file should be excluded from health checks.

find_packages_with_missing_files(→ dict[str, list[str]])

Finds packages listed in conda-meta which have missing files.

missing_files(→ None)

Health check action: Report packages with missing files.

fix_missing_files(→ int)

Fix missing files by reinstalling affected packages.

conda_health_checks(...)

Register the missing files health check.

excluded_files_check(filename: str) bool#

Check if a file should be excluded from health checks.

find_packages_with_missing_files(prefix: str | pathlib.Path) dict[str, list[str]]#

Finds packages listed in conda-meta which have missing files.

missing_files(prefix: str, verbose: bool) None#

Health check action: Report packages with missing files.

fix_missing_files(prefix: str, args: argparse.Namespace, confirm: conda.plugins.types.ConfirmCallback) int#

Fix missing files by reinstalling affected packages.

conda_health_checks() collections.abc.Iterable[conda.plugins.types.CondaHealthCheck]#

Register the missing files health check.