test_ok1/tasks/__init__.py

14 lines
180 B
Python
Raw Normal View History

"""
Invoke tasks to help with pytest development and release process.
"""
import invoke
2017-06-24 02:49:12 +08:00
from . import generate, vendoring
2017-06-24 02:49:12 +08:00
ns = invoke.Collection(
generate,
vendoring
)