doit icon indicating copy to clipboard operation
doit copied to clipboard

task management & automation tool

Results 94 doit issues
Sort by recently updated
recently updated
newest added

Hello, The documentation section titled "keywords with task metadata" says: dependencies: list of file_dep In trying dependencies[0] in a task, the interpreter told me that dependencies is actually a set...

bug

In this simple code picked from tutorials: ```python def task_hello(): """hello py """ def python_hello(times, text, targets): with open(targets[0], "w") as output: output.write(times * text) return {'actions': [(python_hello, [3, "py!\n"])],...

Hi, The `task_params` decorator does not work when the task is using `basename`. The parameters are detected, but not replaced in the task parameter in python. ### dodo.py ``` from...

bug

See https://github.com/cloudpipe/cloudpickle/pull/454

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...

This PR updates file dependencies in the doit database even if the task is already up to date. The change improves performance for large files under certain circumstances. Consider the...

This PR fixes #254 by changing `file_dep` to a list rather than using a set, ensuring the order of dependencies is preserved.

It would be great to support wildcards for the list command. E.g. consider the following `dodo.py` file. ```python def task_hello(): return {"actions": [lambda: None]} ``` Running the task with a...

First off I LOVE doit. Such a brilliant piece of tech and a real-timesaver. I have a lot of tasks that take multiple minutes to run. These are things like...

I intend to customize the configuration file entries prefix (e.g.tool.myapp.tasks.make_cookies instead of tool.doit.tasks.make_cookies). However, there is no global setting to replace all "doit" references with my own application name. Therefore...