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
If any of the commands fails, the rest of the commands won't be executed and the chain fails.
But it would be good if there was an option to make it work similar to how rye test -a works:
If any of the commands fails, the rest of the commands WIILL stil be executed but the chain fails.
This would be useful for running multiple checks and also, for my use case, to run mypy against each package in a monorepo (since unfortunately at present it does not support monorepos), e.g.
Another use case is running coverage report after tests, regardless of whether they pass or fail. We could also name this new option is keep_going, in line with what PDM uses. Reference: https://pdm-project.org/latest/usage/scripts/#composite
Currently for https://rye.astral.sh/guide/pyproject/#chain
But it would be good if there was an option to make it work similar to how
rye test -a
works:This would be useful for running multiple checks and also, for my use case, to run mypy against each package in a monorepo (since unfortunately at present it does not support monorepos), e.g.
The text was updated successfully, but these errors were encountered: