From ec27ab603347574642f4545ecab1851f626315c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 19 Aug 2025 15:06:03 +0200 Subject: [PATCH] Mark `find_uv_bin_py38` test as requiring `python-eol` (#15379) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Mark `find_uv_bin_py38` test as requiring `python-eol`. Resolves one of the issues reported in #15368. ## Test Plan ``` cargo test --profile=dev --features git --features pypi --features python --no-default-features ``` (without Python 3.8 installed) Signed-off-by: Michał Górny --- crates/uv/tests/it/python_module.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/uv/tests/it/python_module.rs b/crates/uv/tests/it/python_module.rs index a9570ccd6..45d789191 100644 --- a/crates/uv/tests/it/python_module.rs +++ b/crates/uv/tests/it/python_module.rs @@ -461,6 +461,7 @@ fn find_uv_bin_error_message() { ); } +#[cfg(feature = "python-eol")] #[test] fn find_uv_bin_py38() { let context = TestContext::new("3.8")