13 lines
155 B
Python
13 lines
155 B
Python
"""
|
|
Invoke tasks to help with pytest development and release process.
|
|
"""
|
|
|
|
import invoke
|
|
|
|
from . import generate
|
|
|
|
|
|
ns = invoke.Collection(
|
|
generate,
|
|
)
|