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

**Describe the bug** Command action uses verbosity 2, and invokes an executable that produces a lot of output in the terminal. (The executable is part of an FPGA simulation flow,...

Dear all, I would like to propose the following feature in `doit` (I have to say that I am a `doit` newbie I might have misunderstood something here). I basically...

When I accidentally put a `Path()` into `updtodate`, I get this stack trace: ``` Traceback (most recent call last): File "doit-0.32.0/lib/python3.7/site-packages/doit/doit_cmd.py", line 190, in run return command.parse_execute(args) File "doit-0.32.0/lib/python3.7/site-packages/doit/cmd_base.py", line...

I think the doc re Action could be improved: https://pydoit.org/tasks.html#actions `The actions of a task are always run sequentially. There are 2 basic kinds of actions: cmd-action and python-action. The...

docs

He there! :wave: Not sure this is a bug or a feature request or expected but...I have the following `dodo.py` ```python DOIT_CONFIG = { "minversion": "0.32.0", } import subprocess from...

bug

I just lost a few hours understanding why my tasks were always re-executing despite my 'uptodate' command string being ok (or so I thought). My command was a multiline command...

bug

See initial discussion on: https://groups.google.com/d/topic/python-doit/c1ZK4GNJkSw/discussion One important consideration is that task that creates non-serializable values can never be considered up-to-date, otherwise a task that uses this value would fail. There...

docs

docs should go on https://pydoit.org/cmd_run.html

docs

The action of my task is a shell command string, which itself is dynamically created by python expression. It will be handy for troubleshooting if there is a command line...

Hi there! I have noticed that at the moment is not possible to do this: ```python "uptodate": [doit.action.CmdAction("..." cwd=somedir)], ``` It would be great to add it, cause sometimes you...