You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you specify settings in pyproject.toml that can also be set through a cli flag, the pyproject.toml file setting is ignored. This is because the setting is always overriden with the (default) value from the cli even when not explicitly passed.
Given the following configuration:
[tool.poetry-release]
disable-push = true
and then running poetry release, it still pushes to the remote.
The text was updated successfully, but these errors were encountered:
jflipts
changed the title
pyproject.toml settings ignored that are available as well as cli flag.
pyproject.toml settings that can be configured through cli flags are ignored
Jun 12, 2023
When you specify settings in pyproject.toml that can also be set through a cli flag, the pyproject.toml file setting is ignored. This is because the setting is always overriden with the (default) value from the cli even when not explicitly passed.
Given the following configuration:
and then running
poetry release
, it still pushes to the remote.The text was updated successfully, but these errors were encountered: