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

After discussion on #396 . It would be useful to have `doit` compare target and file_dep timestamps instead of relying on saved values from previous run.

enhancement

Implement "uses: pydoit" Keep doit DB file in a cache shared between multiple executions.

- https://github.com/saimn/doit-redis - https://github.com/saimn/doit-report

docs

Searching in existing doc for words such as: - --seek-file - -f - doit.cfg - DOIT_SEEK_FILE provides no results. Try to improve Sphinx based documentation so that this kind of...

docs

I would love to have fish shell completion for doit. I don't know how easy or hard this would be, but hopefully it's easy because there's already bash and zsh...

enhancement

Hey @schettino72 ! :) I have experimenting with parallel task execution using multithread configuration and found one strange (for me) moment. One of executed tasks have an 'teardown' action, that...

bug

Hi @schettino72 , I write this small post to let you know about [doit-api](https://smarie.github.io/python-doit-api/) that I created a few months ago to use `doit` more easily thanks to IDE autocompletion...

Hi, thanks for this great tool. ``` import json def task_read(): def read(): with open('data.txt') as json_file: data = json.load(json_file) return data return { 'file_dep': ['data.txt'], 'actions': [(read,)], 'verbosity': 2,...

docs

Hi, could you please specify or advice the technical limitations of using thread option on Windows environment? Some "min - max parameters"? In my case runing: doit -n 40 -P...

need-sample
Windows