salt/tasks/__init__.py
Pedro Algarvio 6a4703146c
Replace tests/unit/test_doc.py with a pre-commit hook.
We don't need to test docs on all platforms. In turn, we make the check
a pre-commit hook which seems more suited.
2020-04-23 20:01:05 +01:00

8 lines
225 B
Python

# -*- coding: utf-8 -*-
from invoke import Collection # pylint: disable=3rd-party-module-not-gated
from . import docs
ns = Collection()
docs = Collection.from_module(docs, name="docs")
ns.add_collection(docs, name="docs")