ruff/crates/ty/tests/cli
Alex Waygood f24e650dfd
[ty] Support --python=<symlink to executable> (#18827)
## Summary

Fixes https://github.com/astral-sh/ty/issues/640. If a user passes
`--python=<some-virtual-environment>/bin/python`, we must avoid
canonicalizing the path until we've traversed upwards to find the
`sys.prefix` directory (`<some-virtual-environment>`). On Unix systems,
`<sys.prefix>/bin/python` is often a symlink to a system interpreter; if
we resolve the symlink too easily then we'll add the system
interpreter's `site-packages` directory as a search path rather than the
virtual environment's directory.

## Test Plan

I added an integration test to
`crates/ty/tests/cli/python_environment.rs` which fails on `main`. I
also manually tested locally that running `cargo run -p ty check foo.py
--python=.venv/bin/python -vv` now prints this log to the terminal

```
2025-06-20 18:35:24.57702 DEBUG Resolved site-packages directories for this virtual environment are: SitePackagesPaths({"/Users/alexw/dev/ruff/.venv/lib/python3.13/site-packages"})
```

Whereas it previously resolved `site-packages` to my system
intallation's `site-packages` directory
2025-06-21 20:28:47 +01:00
..
config_option.rs [ty] Allow overriding rules for specific files (#18648) 2025-06-15 14:27:39 +01:00
exit_code.rs [ty] Split CLI tests into multiple files (#18537) 2025-06-07 16:43:28 +00:00
file_selection.rs [ty] Anchor all exclude patterns (#18685) 2025-06-18 08:57:36 +00:00
main.rs [ty] Support --python=<symlink to executable> (#18827) 2025-06-21 20:28:47 +01:00
python_environment.rs [ty] Support --python=<symlink to executable> (#18827) 2025-06-21 20:28:47 +01:00
rule_selection.rs [ty] Allow overriding rules for specific files (#18648) 2025-06-15 14:27:39 +01:00