-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
45 lines (40 loc) · 773 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
36
37
38
39
40
41
42
43
44
45
[tox]
envlist = py{310,311,312}, format, docs, lint
isolated_build = True
[testenv]
# Do not use basepython here. This way the existing Python version can
# be selected automatically.
# basepython = python3.10
deps =
pytest
stdout_stderr_capturing
commands = pytest
[testenv:format]
deps = ruff
commands =
; sort imports
ruff check --select I --fix .
ruff format
[testenv:docs]
deps =
sphinx
sphinx-rtd-theme
sphinx-argparse
readme-patcher
commands =
readme-patcher
sphinx-build -W -q docs docs/_build
[testenv:lint]
deps =
mypy
ruff
pytest
stdout_stderr_capturing
commands =
ruff check
mypy rsync_watch tests
[gh-actions]
python =
3.10: py310, format, docs, lint
3.11: py311
3.12: py312