Pavel Platto

Results 18 comments of Pavel Platto

Hi @schettino72 ! Today I found another one use case for doit on my work but I need the support for `auto` command on Windows for that use case. #101...

After creating this issue I've got an idea: I can set task_dep for each task using Photoshop equal to the previous such task. It seems like it should work. I...

I've implemented described approach and it works quite well. Perhaps we can discuss it and include something like this in doit itself? Or describe it in documentation? Are you interested?...

Yesterday I forgot that except `name` tasks can have `basename`. This version I believe should work correctly for all kinds of tasks: ``` python from collections import defaultdict _group_last_task_names =...

I didn't want to merge exactly that code in doit. I wanted to discuss this problem and possible solutions with you if you are interested. > what if you want...

And I don't know very much about plugin support, so perhaps it can be implemented as a plugin?

Another problem with my current implementation is that it can cause accidental cyclic references - if A depends on B and both of them use the same shared resource but...

> I suggest to use DOIT_CONFIG and doit configuration file. Yes, it can be the proper place. > But i only thought about single argument of property. Just can't imagine...

After reading `control.py` I've got an opinion that this feature should be implemented inside of `runner.py` and in `MRunner` class specifically because this feature doesn't affect non-parallel execution. I assume...

> control.py is the place where parallel execution is controlled. MRunner is only smart enough to know how many times it should call the task dispatcher in order to use...