The target is not compatible with the host OS.
| 94 | |
| 95 | |
| 96 | class OSMismatchError(MissingDependenciesError): |
| 97 | """The target is not compatible with the host OS.""" |
| 98 | |
| 99 | @classmethod |
| 100 | def _msg(cls, expected, **ignored): |
| 101 | return f'OS is {OS} but expected {expected or "???"}' |
| 102 | |
| 103 | def __init__(self, filename, expected=None, *args, **kwargs): |
| 104 | if isinstance(expected, str): |
| 105 | expected = expected.strip() |
| 106 | |
| 107 | self.actual = OS |
| 108 | self.expected = expected if expected else None |
| 109 | |
| 110 | super().__init__(filename, None, *args, **kwargs) |
no outgoing calls
no test coverage detected
searching dependent graphs…