()
| 915 | |
| 916 | @staticmethod |
| 917 | def get_conda_path() -> List[str]: |
| 918 | conda_path = [] |
| 919 | for i in CondaDetector().find_conda_executable(): |
| 920 | base_path = i.split("/bin/")[0] |
| 921 | envs_path = base_path + "/envs" |
| 922 | conda_path.extend([envs_path, base_path]) |
| 923 | return conda_path |
| 924 | |
| 925 | def is_conda_python(self, python_bin: str) -> bool: |
| 926 | if hasattr(self, "_conda_path"): |
no test coverage detected