Skip to content

Commit e880c33

Browse files
authored
Merge pull request #1868 from EliahKagan/lint
Update readme and tox.ini for recent tooling changes
2 parents 3aed2ca + b059cd5 commit e880c33

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

README.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ probably the skills to scratch that itch of mine: implement `git` in a way that
1717
If you like the idea and want to learn more, please head over to [gitoxide](https://github.com/Byron/gitoxide), an
1818
implementation of 'git' in [Rust](https://www.rust-lang.org).
1919

20-
*(Please note that `gitoxide` is not currently available for use in Python, and that Rust is required)*
20+
*(Please note that `gitoxide` is not currently available for use in Python, and that Rust is required.)*
2121

2222
## GitPython
2323

@@ -39,9 +39,9 @@ The project is open to contributions of all kinds, as well as new maintainers.
3939

4040
### REQUIREMENTS
4141

42-
GitPython needs the `git` executable to be installed on the system and available in your `PATH` for most operations.
43-
If it is not in your `PATH`, you can help GitPython find it by setting
44-
the `GIT_PYTHON_GIT_EXECUTABLE=<path/to/git>` environment variable.
42+
GitPython needs the `git` executable to be installed on the system and available in your
43+
`PATH` for most operations. If it is not in your `PATH`, you can help GitPython find it
44+
by setting the `GIT_PYTHON_GIT_EXECUTABLE=<path/to/git>` environment variable.
4545

4646
- Git (1.7.x or newer)
4747
- Python >= 3.7
@@ -57,7 +57,7 @@ GitPython and its required package dependencies can be installed in any of the f
5757

5858
To obtain and install a copy [from PyPI](https://pypi.org/project/GitPython/), run:
5959

60-
```bash
60+
```sh
6161
pip install GitPython
6262
```
6363

@@ -67,15 +67,15 @@ pip install GitPython
6767

6868
If you have downloaded the source code, run this from inside the unpacked `GitPython` directory:
6969

70-
```bash
70+
```sh
7171
pip install .
7272
```
7373

7474
#### By cloning the source code repository
7575

7676
To clone the [the GitHub repository](https://github.com/gitpython-developers/GitPython) from source to work on the code, you can do it like so:
7777

78-
```bash
78+
```sh
7979
git clone https://github.com/gitpython-developers/GitPython
8080
cd GitPython
8181
./init-tests-after-clone.sh
@@ -85,15 +85,15 @@ On Windows, `./init-tests-after-clone.sh` can be run in a Git Bash shell.
8585

8686
If you are cloning [your own fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks), then replace the above `git clone` command with one that gives the URL of your fork. Or use this [`gh`](https://cli.github.com/) command (assuming you have `gh` and your fork is called `GitPython`):
8787

88-
```bash
88+
```sh
8989
gh repo clone GitPython
9090
```
9191

9292
Having cloned the repo, create and activate your [virtual environment](https://docs.python.org/3/tutorial/venv.html).
9393

9494
Then make an [editable install](https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs):
9595

96-
```bash
96+
```sh
9797
pip install -e ".[test]"
9898
```
9999

@@ -105,7 +105,7 @@ In rare cases, you may want to work on GitPython and one or both of its [gitdb](
105105

106106
If you want to do that *and* you want the versions in GitPython's git submodules to be used, then pass `-e git/ext/gitdb` and/or `-e git/ext/gitdb/gitdb/ext/smmap` to `pip install`. This can be done in any order, and in separate `pip install` commands or the same one, so long as `-e` appears before *each* path. For example, you can install GitPython, gitdb, and smmap editably in the currently active virtual environment this way:
107107

108-
```bash
108+
```sh
109109
pip install -e ".[test]" -e git/ext/gitdb -e git/ext/gitdb/gitdb/ext/smmap
110110
```
111111

@@ -141,50 +141,51 @@ you will encounter test failures.
141141

142142
Ensure testing libraries are installed. This is taken care of already if you installed with:
143143

144-
```bash
144+
```sh
145145
pip install -e ".[test]"
146146
```
147147

148-
Otherwise, you can run:
149-
150-
```bash
151-
pip install -r test-requirements.txt
152-
```
148+
If you had installed with a command like `pip install -e .` instead, you can still run
149+
the above command to add the testing dependencies.
153150

154151
#### Test commands
155152

156153
To test, run:
157154

158-
```bash
155+
```sh
159156
pytest
160157
```
161158

162-
To lint, and apply automatic code formatting, run:
159+
To lint, and apply some linting fixes as well as automatic code formatting, run:
163160

164-
```bash
161+
```sh
165162
pre-commit run --all-files
166163
```
167164

165+
This includes the linting and autoformatting done by Ruff, as well as some other checks.
166+
168167
To typecheck, run:
169168

170-
```bash
169+
```sh
171170
mypy -p git
172171
```
173172

174173
#### CI (and tox)
175174

176-
The same linting, and running tests on all the different supported Python versions, will be performed:
175+
Style and formatting checks, and running tests on all the different supported Python versions, will be performed:
177176

178177
- Upon submitting a pull request.
179178
- On each push, *if* you have a fork with GitHub Actions enabled.
180179
- Locally, if you run [`tox`](https://tox.wiki/) (this skips any Python versions you don't have installed).
181180

182181
#### Configuration files
183182

184-
Specific tools:
183+
Specific tools are all configured in the `./pyproject.toml` file:
185184

186-
- Configurations for `mypy`, `pytest`, `coverage.py`, and `black` are in `./pyproject.toml`.
187-
- Configuration for `ruff` is in the `pyproject.toml` file.
185+
- `pytest` (test runner)
186+
- `coverage.py` (code coverage)
187+
- `ruff` (linter and formatter)
188+
- `mypy` (type checker)
188189

189190
Orchestration tools:
190191

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
requires = tox>=4
3-
env_list = py{37,38,39,310,311,312}, lint, mypy, html
3+
env_list = py{37,38,39,310,311,312}, mypy, html
44

55
[testenv]
66
description = Run unit tests

0 commit comments

Comments
 (0)