Fix the preview warning on `uv workspace dir` (#16775)

This commit is contained in:
Zanie Blue 2025-11-19 13:20:25 -06:00 committed by GitHub
parent 3ac43e8d15
commit fc0cf90795
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 13 deletions

View File

@ -20,7 +20,7 @@ pub(crate) async fn dir(
preview: Preview,
printer: Printer,
) -> Result<ExitStatus> {
if preview.is_enabled(PreviewFeatures::WORKSPACE_DIR) {
if !preview.is_enabled(PreviewFeatures::WORKSPACE_DIR) {
warn_user!(
"The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features {}` to disable this warning.",
PreviewFeatures::WORKSPACE_DIR

View File

@ -16,14 +16,15 @@ fn workspace_dir_simple() {
let workspace = context.temp_dir.child("foo");
uv_snapshot!(context.filters(), context.workspace_dir().current_dir(&workspace), @r###"
uv_snapshot!(context.filters(), context.workspace_dir().current_dir(&workspace), @r"
success: true
exit_code: 0
----- stdout -----
[TEMP_DIR]/foo
----- stderr -----
"###
warning: The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features workspace-dir` to disable this warning.
"
);
}
@ -36,25 +37,27 @@ fn workspace_dir_specific_package() {
let workspace = context.temp_dir.child("foo");
// root workspace
uv_snapshot!(context.filters(), context.workspace_dir().current_dir(&workspace), @r###"
uv_snapshot!(context.filters(), context.workspace_dir().current_dir(&workspace), @r"
success: true
exit_code: 0
----- stdout -----
[TEMP_DIR]/foo
----- stderr -----
"###
warning: The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features workspace-dir` to disable this warning.
"
);
// with --package bar
uv_snapshot!(context.filters(), context.workspace_dir().arg("--package").arg("bar").current_dir(&workspace), @r###"
uv_snapshot!(context.filters(), context.workspace_dir().arg("--package").arg("bar").current_dir(&workspace), @r"
success: true
exit_code: 0
----- stdout -----
[TEMP_DIR]/foo/bar
----- stderr -----
"###
warning: The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features workspace-dir` to disable this warning.
"
);
}
@ -72,14 +75,15 @@ fn workspace_metadata_from_member() -> Result<()> {
let member_dir = workspace.join("packages").join("bird-feeder");
uv_snapshot!(context.filters(), context.workspace_dir().current_dir(&member_dir), @r###"
uv_snapshot!(context.filters(), context.workspace_dir().current_dir(&member_dir), @r"
success: true
exit_code: 0
----- stdout -----
[TEMP_DIR]/workspace
----- stderr -----
"###
warning: The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features workspace-dir` to disable this warning.
"
);
Ok(())
@ -95,14 +99,15 @@ fn workspace_dir_package_doesnt_exist() {
let workspace = context.temp_dir.child("foo");
uv_snapshot!(context.filters(), context.workspace_dir().arg("--package").arg("bar").current_dir(&workspace), @r###"
uv_snapshot!(context.filters(), context.workspace_dir().arg("--package").arg("bar").current_dir(&workspace), @r"
success: false
exit_code: 2
----- stdout -----
----- stderr -----
warning: The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features workspace-dir` to disable this warning.
error: Package `bar` not found in workspace.
"###
"
);
}
@ -111,13 +116,14 @@ fn workspace_dir_package_doesnt_exist() {
fn workspace_metadata_no_project() {
let context = TestContext::new("3.12");
uv_snapshot!(context.filters(), context.workspace_dir(), @r###"
uv_snapshot!(context.filters(), context.workspace_dir(), @r"
success: false
exit_code: 2
----- stdout -----
----- stderr -----
warning: The `uv workspace dir` command is experimental and may change without warning. Pass `--preview-features workspace-dir` to disable this warning.
error: No `pyproject.toml` found in current directory or any parent directory
"###
"
);
}