releases/tasks.py
2016-07-25 17:33:30 -07:00

17 lines
372 B
Python

from invocations import docs
from invocations.testing import test, integration, watch_tests
from invocations.packaging import release
from invoke import Collection
ns = Collection(test, integration, watch_tests, release, docs)
ns.configure({
'tests': {
'package': 'releases',
},
'packaging': {
'sign': True,
'wheel': True,
},
})