Created
April 4, 2020 15:07
-
-
Save vkantsev/8dff36046beb8c5a0a4c742f5c0b0fe5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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