You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,16 @@ Recommended steps for first time contributors:
20
20
git pull
21
21
pip install -e .
22
22
```
23
-
4. After adding and committing your fix or feature, ensure that code coverage is at least 90% (otherwise the PR will be rejected) and that linting is successfully executed using the following command:
23
+
4. (Optional but recommended) Install pre-commit hooks:
24
+
```bash
25
+
pip install pre-commit
26
+
pre-commit install
27
+
```
28
+
5. After adding and committing your fix or feature, ensure that code coverage is at least 90% (otherwise the PR will be rejected) and that linting is successfully executed using the following command:
24
29
```bash
25
30
tox
26
31
```
27
-
5. Create pull request to the original repository.
32
+
6. Create a pull request to the original repository.
0 commit comments