forked from gitpython-developers/GitPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
35 lines (30 loc) · 848 Bytes
/
tox.ini
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
28
29
30
31
32
33
34
35
[tox]
requires = tox>=4
env_list = py{37,38,39,310,311,312}, lint, mypy, black
[testenv]
description = Run unit tests
package = wheel
extras = test
pass_env = SSH_*
commands = pytest --color=yes {posargs}
[testenv:lint]
description = Lint via pre-commit
base_python = py39
commands = pre-commit run --all-files
[testenv:mypy]
description = Typecheck with mypy
base_python = py39
commands = mypy -p git
ignore_outcome = true
[testenv:black]
description = Check style with black
base_python = py39
commands = black --check --diff .
# Run "tox -e html" for this. It is deliberately excluded from env_list, as
# unlike the other environments, this one writes outside the .tox/ directory.
[testenv:html]
description = Build HTML documentation
base_python = py39
deps = -r doc/requirements.txt
allowlist_externals = make
commands = make -C doc html