Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def test_git_path_lock_branch_records_branch_metadata(
assert {entry.get("branch") for entry in entries} == {"other-feature"}
assert {entry.get("rev") for entry in entries} == {local_cpp_git_repo.other_feature_rev}
assert all("tag" not in entry for entry in entries)
assert {entry.get("subdir") for entry in entries} == {"."}
assert {entry.get("subdir") for entry in entries} == {None}

verify_cli_command(
[pixi, "install", "-v", "--manifest-path", tmp_pixi_workspace, "--locked"],
Expand Down Expand Up @@ -332,7 +332,7 @@ def test_git_path_lock_tag_records_tag_metadata(
assert {entry.get("tag") for entry in entries} == {local_cpp_git_repo.tag}
assert {entry.get("rev") for entry in entries} == {local_cpp_git_repo.main_rev}
assert all("branch" not in entry for entry in entries)
assert {entry.get("subdir") for entry in entries} == {"."}
assert {entry.get("subdir") for entry in entries} == {None}

verify_cli_command(
[pixi, "install", "-v", "--manifest-path", tmp_pixi_workspace, "--locked"],
Expand Down
Loading