summaryrefslogtreecommitdiff
path: root/tasks/__init__.py
blob: 5d74b649e11a235b4c50e639df39204bd9b37f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
Invoke tasks to help with pytest development and release process.
"""

import invoke

from . import vendoring


ns = invoke.Collection(
    vendoring
)