Clarify need to include pyproject.toml with --no-install-project (#6581)

## Summary

See: https://github.com/astral-sh/uv/issues/6573
This commit is contained in:
Charlie Marsh 2024-08-24 09:45:23 -04:00 committed by GitHub
parent 1eb97c91fd
commit 8ee53a9e38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 29 additions and 1 deletions

View file

@ -861,6 +861,18 @@ fn no_install_project() -> Result<()> {
+ sniffio==1.3.1
"###);
// However, we do require the `pyproject.toml`.
fs_err::remove_file(pyproject_toml)?;
uv_snapshot!(context.filters(), context.sync().arg("--no-install-project"), @r###"
success: false
exit_code: 2
----- stdout -----
----- stderr -----
error: No `pyproject.toml` found in current directory or any parent directory
"###);
Ok(())
}
@ -928,6 +940,18 @@ fn no_install_workspace() -> Result<()> {
+ sniffio==1.3.1
"###);
// However, we do require the `pyproject.toml`.
fs_err::remove_file(child.join("pyproject.toml"))?;
uv_snapshot!(context.filters(), context.sync().arg("--no-install-workspace"), @r###"
success: false
exit_code: 2
----- stdout -----
----- stderr -----
error: Workspace member `[TEMP_DIR]/child` is missing a `pyproject.toml` (matches: `child`)
"###);
Ok(())
}