diff --git a/crates/uv-interpreter/src/discovery.rs b/crates/uv-interpreter/src/discovery.rs index e9516f48a..68cffd9a7 100644 --- a/crates/uv-interpreter/src/discovery.rs +++ b/crates/uv-interpreter/src/discovery.rs @@ -1177,11 +1177,12 @@ impl SourceSelector { Self::from_sources([InterpreterSource::ManagedToolchain]) } else if env::var_os("UV_TEST_PYTHON_PATH").is_some() { debug!( - "Only considering search path and active environments due to `UV_TEST_PYTHON_PATH`" + "Only considering search path, provided path, and active environments due to `UV_TEST_PYTHON_PATH`" ); Self::from_sources([ InterpreterSource::ActiveEnvironment, InterpreterSource::SearchPath, + InterpreterSource::ProvidedPath, ]) } else { match system {