releases/tasks.py

14 lines
301 B
Python
Raw Normal View History

2013-11-06 17:24:47 -08:00
from invocations import docs
from invocations.testing import test, integration, watch_tests
2013-11-06 17:24:47 -08:00
from invocations.packaging import release
from invoke import Collection
2014-04-14 17:52:24 -04:00
ns = Collection(test, integration, watch_tests, release, docs)
ns.configure({
'tests': {
'package': 'releases',
},
})