Is poetry check only for the abstract structure to the pyproject.toml?
#7424
-
|
Is To be specific, should this command check existence of the file [tool.poetry]
# ...
readme = "docs/README.md"(I'm trying to fix #6937 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The documentation says that it validates the structure. Kind of related: It is planned to replace |
Beta Was this translation helpful? Give feedback.
The documentation says that it validates the structure.
poetry check --helpsays that it checks the validity of pyproject.toml. However, (maybe via flags) it should just check anything we want to check. We only have to think about the default and update the documentation. Checking the existence of referenced files makes sense.Kind of related: It is planned to replace
poetry lock --checkwithpoetry check --lock(see #6756,poetry lock --checkis considered a UI design flaw).