()
| 249 | |
| 250 | |
| 251 | def test_pp_invalid(): |
| 252 | # type: () -> None |
| 253 | with ENV.patch(PEX_PYTHON="/invalid/abs/python"): |
| 254 | with pytest.raises( |
| 255 | UnsatisfiableInterpreterConstraintsError, |
| 256 | match=( |
| 257 | r"The specified PEX_PYTHON=/invalid/abs/python could not be identified as a " |
| 258 | r"valid Python interpreter." |
| 259 | ), |
| 260 | ): |
| 261 | find_compatible_interpreter() |
| 262 | |
| 263 | |
| 264 | def test_pp_exact(): |
nothing calls this directly
no test coverage detected