pydoit / doit

CLI task management & automation tool
http://pydoit.org
MIT License
1.87k stars 175 forks source link

doit.run() #291

Closed NickMortimer closed 5 years ago

NickMortimer commented 5 years ago

Hi I've just started using pydoit and stating to get my work flow going. I like to debug using pycharm using at the end of my file

if __name__ == '__main__':
    import doit
    doit.run(globals())

my question is how do I pass an arg into the run? --continue would be great so that my build skips over broken tasks?