Skip to content

Commit

Permalink
fix: windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejager committed May 7, 2024
1 parent 3b58848 commit 7e6f52c
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions tests/install_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -427,17 +427,7 @@ async fn test_installer_name() {
.join("lib/python3.11/site-packages/click-8.0.0.dist-info")
} else {
let default_env_path = pixi.default_env_path().unwrap();
assert!(default_env_path.exists(), "default_env_path does not exist");
assert!(default_env_path.join("Lib").exists(), "lib does not exist");
assert!(
default_env_path.join("Lib/python").exists(),
"python does not exist"
);
assert!(
default_env_path.join("Lib/Python/site-packages").exists(),
"site-packages does not exist"
);
default_env_path.join("Lib/Python/site-packages/click-8.0.0.dist-info")
default_env_path.join("Lib/site-packages/click-8.0.0.dist-info")
};
// Check that installer name is uv-pixi
assert!(dist_info.exists(), "{dist_info:?} does not exist");
Expand Down

0 comments on commit 7e6f52c

Please sign in to comment.