mirror of
https://github.com/vale981/releases
synced 2025-03-05 09:41:42 -05:00
13 lines
301 B
Python
13 lines
301 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',
|
|
},
|
|
})
|