0

I'm working on a pip package for our company that we can hopefully install on your applications and have a set of invoke task that we run use locally on our machines. So far, creating a task is really simple but I want to know if it's possible to have invoke find tasks inside installed packages? Thanks!

firebait
  • 473
  • 1
  • 4
  • 7

1 Answers1

1

From invoke you can certainly use the Collection class to aggregate the tasks that you find. Not so sure there is auto-detecting.

github: invoke/collection.py

Ghalko
  • 11
  • 3