This repository has been archived on 2024-12-19. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-19/fabfile/__init__.py
coffeedogs bac7056e40
Fixed: Responded to PR comments, also:
* fixed typos, documentation and help improvements
 * factored out sorting and slicing
 * user convenience for ssh
 * avoid being os-specific
 * add return status equal to total violations
 * fixed pylint's path issue causing false import errors
2018-05-15 14:59:41 +01:00

33 lines
617 B
Python

"""
Fabric is a Python library for performing devops tasks. If you have Fabric installed (systemwide or via pip) you can
run commands like this:
$ fab code_quality
For a list of commands:
$ fab -l
For help on fabric itself:
$ fab -h
For more help on a particular command
"""
from fabric.api import env
from fabfile.tasks import code_quality
# Without this, `fab -l` would display the whole docstring as preamble
__doc__ = ""
# This list defines which tasks are made available to the user
__all__ = [
"code_quality",
]
# Honour the user's ssh client configuration
env.use_ssh_config = True