Skip to content

Instantly share code, notes, and snippets.

@vkantsev
Created April 4, 2020 15:07
Show Gist options
  • Save vkantsev/8dff36046beb8c5a0a4c742f5c0b0fe5 to your computer and use it in GitHub Desktop.
Save vkantsev/8dff36046beb8c5a0a4c742f5c0b0fe5 to your computer and use it in GitHub Desktop.
$ cat .git/hooks/pre-commit
#!/bin/sh -e
# Run Black formatter
pipenv run black --check $(git rev-parse --show-toplevel)
# Run Pytest
pipenv run pytest $(git rev-parse --show-toplevel)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment