health_checks
#
Backend logic implementation for conda doctor.
Functions#
|
Displays our report heading. |
|
Checks whether the environment is listed in the environments.txt file |
|
|
|
Finds packages listed in conda-meta which have missing files. |
|
Finds altered packages |
|
Prints health report. |
|
|
|
|
|
|
Attributes#
- logger#
- OK_MARK = '✅'#
- X_MARK = '❌'#
- check_envs_txt_file(prefix: str | os.PathLike | pathlib.Path) bool #
Checks whether the environment is listed in the environments.txt file
- find_packages_with_missing_files(prefix: str | pathlib.Path) dict[str, list[str]] #
Finds packages listed in conda-meta which have missing files.
- conda_health_checks()#