Running Black, Flake8, and isort with pre-commit
In this tutorial, we'll explore how to use pre-commit to automate the checking of a Python project with three essential tools:
What is a Git Commit?
In Git, you can manage your repository using many actions, such as pulling, committing, merging, and pushing code. For this tutorial, we are concerned about commit -- an action that records a snapshot of the changes made to your files in a repository. Commits are used to track the history of a project and allow developers to revert to earlier versions if needed.
What are Git Hooks?
Similar to other Version Control Systems, Git has a way to fire off custom scripts before or after an action takes effect. These scripts are called Git hooks. They allow you to automate tasks and enforce standards at various stages of the Git workflow. For this tutorial, we are particularly interested in using the pre-commit hook, which runs before a commit is finalized.
What is pre-commit?
pre-commit is a tool that manages and executes pre-commit hooks. For our use case, we will use pre-commit to automate running Black, Flake8, and isort. This process performs sanity checks, ensuring our code adheres to standards prior to committing.
To simplify: We want to use pre-commit to perform quality checks prior to saving our work in a Git repository.
How to Use pre-commit?
1. Activate your virtual environment
Before installing pre-commit, you have to activate your virtual environment. A virtual environment helps isolate your project's dependencies from your global Python installation.
2. Install pre-commit via pip
Once your virtual environment is active, download and install pre-commit using pip by entering the following command in your terminal:
1 |
|
3. Add a pre-commit configuration file
You need to create a file named .pre-commit-config.yaml.
4. Add the settings for Black, Flake8, and isort
Using the Gen EMR project as an example, below is a sample production .pre-commit-config.yaml file from our Django project.
Take note: The .pre-commit-config.yaml should use 2 spaces as a common convention.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
You may want to view the pre-commit's available config options.
5. Install the Git hook scripts
Run the following command to install the hooks defined in your .pre-commit-config.yaml:
1 |
|
This command sets up the hooks to run automatically before every commit.
Terminal output:
1 |
|
6. Run Git hook scripts for all files
If you have added new hooks to your .pre-commit-config.yaml, it is a good idea to run them on all your files.
Type the following code in your terminal:
1 |
|
Terminal output:
1 2 3 4 5 6 7 8 9 10 11 12 |
|