mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00

We don't need to test docs on all platforms. In turn, we make the check a pre-commit hook which seems more suited.
8 lines
225 B
Python
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")
|