Skip to content

Commit

Permalink
test: skip test_local_source_newer_than_local_metadata (prefix-dev#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofer-Julian authored Dec 6, 2024
1 parent d24b8da commit d722d07
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/install_pypi/plan/test/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,12 @@ fn test_installed_local_required_local() {
}
/// When requiring a local package and that same local package is installed, we should not reinstall it
/// except if the pyproject.toml file, or some other source files we won't check here is newer than the cache
/// NOTE: We are skipping that test since it is flaky on linux
/// uv checks ctime on unix systems
/// During debug, we noticed that some times ctime isn't updated, and we couldn't find a relieable way to ensure that
/// At this time, we believe this to be a problem with our test, not with pixi or uv.
/// If user encounter this problem we should investigate this again
#[cfg(not(target_os = "linux"))]
#[test]
fn test_local_source_newer_than_local_metadata() {
let (fake, pyproject) = harness::fake_pyproject_toml(None);
Expand Down

0 comments on commit d722d07

Please sign in to comment.