(self)
| 2065 | # Otherwise, this function returns a string that describes the reason why this |
| 2066 | # tool is not available. |
| 2067 | def can_be_installed(self): |
| 2068 | if self.bitness == 64 and not is_os_64bit(): |
| 2069 | return "this tool is only provided for 64-bit OSes" |
| 2070 | return True |
| 2071 | |
| 2072 | def download_url(self): |
| 2073 | if WINDOWS and self.windows_url: |
no test coverage detected