Install make based git hooks with ease.
Project description
Use make targets to execute git hooks. Inspired by husky.
Rationale
When working on Node.js projects, I liked the simplicity of setting up git hooks using husky. Since I failed to find a similar tool in python ecosystem, I decided to write one myself.
As far as I know, there is no standard equivalent to npm scripts in python, so I chose to rely on make which seems to be a popular way to organise project-related tasks in the python world.
Note
Development follows my needs at work, which means whippet might be a bit light on features. Feel free to make a suggestion if you’re missing something.
Installation
Whippet is available as a PyPI package. Use a tool that can install packages from it, like for instance pip.
$ pip install whippet
Usage
Install hooks
Once whippet is installed, it is used by invoking whippet executable in the directory where you wish to install hooks. Whippet checks if that directory (or its ancestor) contains a .git directory and offers to install hooks into it.
$ cd demo
$ whippet
whippet - Are you sure you want to install hooks in /home/bpp/demo/.git? [Y/n] y
Setup target
Whippet hooks are scripts that check for the existence of make targets with the same name as git hooks. If such a target exists, the script executes it. Let’s take pre-commit as an example. Once whippet hooks are installed, we simply add pre-commit target to the Makefile like so:
pre-commit:
@echo "Whippet says: Woof!"
Then the target will be executed on pre-commit:
$ git commit -m 'Testing whippet'
pre-commit
Whippet says: Woof!
[master d654d33] Bar
1 file changed, 12 insertions(+)
create mode 100644 Makefile
$
Uninstall hooks
If you had enough and want to remove whippet git hooks invoke whippet and pass uninstall command
$ whippet uninstall
whippet - Are you sure you want to uninstall hooks in /home/bpp/demo/.git? [Y/n] y
Non-interactive
To avoid the prompt pass the --assume-yes argument to whippet. This can be useful when adding whippet to initialisation target in Makefile. Example:
init:
poetry install
whippet --assume-yes
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file whippet-0.3.2.tar.gz
.
File metadata
- Download URL: whippet-0.3.2.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.6.7 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d450e4f279af436ed2fa431ff12e2820e6361ac41d51c30e2b69242499c0cb82 |
|
MD5 | 837b370f940c9fa0af2cd8870850425b |
|
BLAKE2b-256 | e02cf7327f99f1284c3c256cd6bd87d615e05c95bc5905a46e640202b7364ca9 |
File details
Details for the file whippet-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: whippet-0.3.2-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.6.7 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de06836b8e4af756eb61f6006db3195e346271ec3840c381647747c784387162 |
|
MD5 | 46815970b0810c3e242a4fdecc4615ab |
|
BLAKE2b-256 | e722acaa5604ac8975c3b8cd8b4bc56e5422b59e8b5f7b40e0fcb2eac7d0faa2 |