Skip to content
#

task-runner

Here are 386 public repositories matching this topic...

andreynering
andreynering commented Mar 25, 2019

Task has some tricky gotchas that are not well documented. I need to work on improving some areas and add some missing documentation.

  • Add a variable priority section better explaining how them work.
    • Make it clear that setting a var through cli (not env) kinda overrides it. (Ref).
  • More itens to be added
wordmove
drshrey
drshrey commented Dec 24, 2019

In .air.conf, if you set the tmp to ".", your entire current working directory will be wiped. This can be very bad especially if you haven't committed to git in a while. Can we have a warning if it is set to "." or atleast some documentation around that please?

My .air.conf that caused this:

# Working directory
# . or absolute path, please note that the directories following must be und
schettino72
schettino72 commented Jun 29, 2019

doit already support Task parameters, but they are not convenient to be used with task-groups.

Example of proposed feature:

from doit import task_param

@task_param({'name':'param1', 'short':'p', 'default':'default value'})
def task_py_params(param1):
    for name in ['foo', 'bar']:
        yield {
            'name': name,
            'actions':['echo {}'.format(param1)],
   
Hobart2967
Hobart2967 commented Jan 22, 2020

Is your feature request related to a problem? Please describe.
When running a help command on a values arg or option, no information about possible values is shown. The user has first to fail the command to see the values. I'd like to see them right when asking tusk for help, not when trying to execute and fail.

Also it'll be nice if I could define a usage info for values.

This also co

Improve this page

Add a description, image, and links to the task-runner topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the task-runner topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.