forked from mirrors/gecko-dev
Updated to 3.2.5. MozReview-Commit-ID: 34OG1iGeMVW --HG-- extra : rebase_source : 3ffa191b142f60897abb0728f53e71b8cda52701
12 lines
156 B
Python
12 lines
156 B
Python
"""
|
|
Invoke tasks to help with pytest development and release process.
|
|
"""
|
|
|
|
import invoke
|
|
|
|
from . import vendoring
|
|
|
|
|
|
ns = invoke.Collection(
|
|
vendoring
|
|
)
|