Skip to content

Commit

Permalink
add more test
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Nov 7, 2024
1 parent a0d4cfd commit 443d7a8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/integration_rust/install_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -756,3 +756,18 @@ async fn test_ensure_gitignore_file_creation() {
".pixi/.gitignore file does not contain the expected content"
);
}

#[tokio::test]
#[cfg_attr(not(feature = "slow_integration_tests"), ignore)]
async fn test_pypi_mit_git_transitive() {
let pixi = PixiControl::new().unwrap();
pixi.init_with_platforms(vec![Platform::current().to_string()])
.await
.unwrap();
// pixi.init().await.unwrap();
pixi.add("python==3.12.*").with_install(true).await.unwrap();
pixi.add("boltons")
.set_type(pixi::DependencyType::PypiDependency)
.await
.unwrap();
}

0 comments on commit 443d7a8

Please sign in to comment.