I would like to run all tasks even if some have non-zero exit status. I can do this with doit --continue
from the command line, but would like to embed the directive in the dodo.py
file itself. I've checked the docs but have been unable to find a way - my starting point is:
def task_lint():
"""Run checks on code."""
return {
"actions": [
"pflake8",
"isort --check .",
"black --check ."
]
}
In Make I would prefix commands with -
:
check:
-flake8
-isort --check .
-black --check .
What should I do in doit
?