-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
tox.ini
74 lines (66 loc) · 1.81 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Keep docs in sync with docs env and .readthedocs.yml.
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311, docs
3.12: py312, lint
3.13: py313
pypy-3: pypy3
[tox]
envlist = pypy3, py39, py310, py311, py312, py313, lint, docs
isolated_build = true
skipsdist = true
[testenv:lint]
basepython = python3.12
allowlist_externals =
make
pdm
commands =
pdm sync -G lint
make lint
[testenv]
setenv =
PDM_IGNORE_SAVED_PYTHON="1"
COVERAGE_PROCESS_START={toxinidir}/pyproject.toml
allowlist_externals = pdm
commands_pre =
pdm sync -G :all,test
python -c 'import pathlib; pathlib.Path("{env_site_packages_dir}/cov.pth").write_text("import coverage; coverage.process_startup()")'
commands =
coverage run -m pytest tests {posargs:-n auto}
passenv = CI
package = wheel
wheel_build_env = .pkg
[testenv:py312]
setenv =
PDM_IGNORE_SAVED_PYTHON="1"
COVERAGE_PROCESS_START={toxinidir}/pyproject.toml
COVERAGE_CORE=sysmon
[testenv:py313]
setenv =
PDM_IGNORE_SAVED_PYTHON="1"
COVERAGE_PROCESS_START={toxinidir}/pyproject.toml
COVERAGE_CORE=sysmon
commands_pre =
pdm sync -G ujson,msgpack,pyyaml,tomlkit,cbor2,bson,orjson,test
python -c 'import pathlib; pathlib.Path("{env_site_packages_dir}/cov.pth").write_text("import coverage; coverage.process_startup()")'
[testenv:pypy3]
setenv =
FAST = 1
PDM_IGNORE_SAVED_PYTHON="1"
COVERAGE_PROCESS_START={toxinidir}/pyproject.toml
commands_pre =
pdm sync -G ujson,msgpack,pyyaml,tomlkit,cbor2,bson,test
python -c 'import pathlib; pathlib.Path("{env_site_packages_dir}/cov.pth").write_text("import coverage; coverage.process_startup()")'
[testenv:docs]
basepython = python3.12
setenv =
PYTHONHASHSEED = 0
commands_pre =
pdm sync -G :all,docs
commands =
make docs
allowlist_externals =
make
pdm