Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crates/uv/tests/it/python_upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,8 @@ fn python_upgrade_ignored_with_python_pin() {
);
}

// Virtual environments only record minor versions. `uv venv -p 3.x.y` will
// not prevent transparent upgrades.
// Virtual environments record patch versions. `uv venv -p 3.x.y` will
// prevent transparent upgrades.
#[test]
fn python_no_transparent_upgrade_with_venv_patch_specification() {
let context: TestContext = TestContext::new_with_versions(&["3.13"])
Expand Down Expand Up @@ -438,7 +438,7 @@ fn python_no_transparent_upgrade_with_venv_patch_specification() {
+ cpython-3.10.19-[PLATFORM] (python3.10)
");

// The virtual environment Python version is transparently upgraded.
// The virtual environment Python version remains the same.
uv_snapshot!(context.filters(), context.run().arg("python").arg("--version"), @r"
success: true
exit_code: 0
Expand Down
Loading