Files
pytest2/tasks/__init__.py
2017-11-23 20:23:50 +00:00

13 lines
155 B
Python

"""
Invoke tasks to help with pytest development and release process.
"""
import invoke
from . import generate
ns = invoke.Collection(
generate,
)