mirror of
https://github.com/go-task/task.git
synced 2026-06-15 11:51:41 +00:00
Consider a task:
test:
cmds:
- pytest {{.CLI_ARGS}}
Running `task test -- -m "not foo"` should be equivalent
to running `pytest -m "not foo"`. However, with the current
implementation the quoting of CLI_ARGS is lost and the task
executes `python -m not foo`, which results in an error.