From 9a8ff85083f49196cc0226766b4e55404817507d Mon Sep 17 00:00:00 2001 From: konsti Date: Tue, 22 Oct 2024 14:17:28 +0200 Subject: [PATCH] Don't build the maturin test (#8447) --- crates/uv/tests/it/init.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/crates/uv/tests/it/init.rs b/crates/uv/tests/it/init.rs index 33909d9ab..808eb4796 100644 --- a/crates/uv/tests/it/init.rs +++ b/crates/uv/tests/it/init.rs @@ -2665,21 +2665,6 @@ fn init_app_build_backend_maturin() -> Result<()> { ); }); - uv_snapshot!(context.filters(), context.run().current_dir(&child).env_remove("VIRTUAL_ENV").arg("foo"), @r###" - success: true - exit_code: 0 - ----- stdout ----- - Hello from foo! - - ----- stderr ----- - Using CPython 3.12.[X] interpreter at: [PYTHON-3.12] - Creating virtual environment at: .venv - Resolved 1 package in [TIME] - Prepared 1 package in [TIME] - Installed 1 package in [TIME] - + foo==0.1.0 (from file://[TEMP_DIR]/foo) - "###); - Ok(()) } @@ -2933,21 +2918,6 @@ fn init_lib_build_backend_maturin() -> Result<()> { ); }); - uv_snapshot!(context.filters(), context.run().current_dir(&child).env_remove("VIRTUAL_ENV").arg("python").arg("-c").arg("import foo; print(foo.hello())"), @r###" - success: true - exit_code: 0 - ----- stdout ----- - Hello from foo! - - ----- stderr ----- - Using CPython 3.12.[X] interpreter at: [PYTHON-3.12] - Creating virtual environment at: .venv - Resolved 1 package in [TIME] - Prepared 1 package in [TIME] - Installed 1 package in [TIME] - + foo==0.1.0 (from file://[TEMP_DIR]/foo) - "###); - Ok(()) }