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
tasks:
build:
cmds:
- ...
test-units:
cmds:
- ...
- ...
test-integration-a
cmds:
- ...
- ...
test-integration-b
cmds:
- ...
- ...
all-tests:
cmds:
- task: test-* # run all tasks matching this wildcard in order in which they are defined
This would make it easier to maintain large taskfiles. As adding/removing/renaming a task in one place would not require remembering to update the file in possibly several other places (which is a common error one can make right now).
Also, we should support this on the CLI, e.g. $ task build 'test-integration-*'
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Allow executing the tasks by a wildcard:
This would make it easier to maintain large taskfiles. As adding/removing/renaming a task in one place would not require remembering to update the file in possibly several other places (which is a common error one can make right now).
Also, we should support this on the CLI, e.g.
$ task build 'test-integration-*'
Beta Was this translation helpful? Give feedback.
All reactions