forked from jsonpickle/jsonpickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
55 lines (50 loc) · 1.06 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
[tox]
minversion = 4.0
envlist = clean,py36,py37,py38,py39,py310,py311,py312,py313,report
skip_missing_interpreters = true
[testenv]
allowlist_externals =
ruff
passenv =
FORCE_COLOR
commands =
python3 -m pytest --cov --cov-append --cov-report=term-missing jsonpickle tests {posargs}
depends =
{py36,py37,py38,py39,py310,py311,py312,py313}: clean
report: py36,py37,py38,py39,py310,py311,py312,py313
extras =
testing
pip_version = pip
sitepackages = true
usedevelop = true
[testenv:clean]
deps = coverage
skip_install = true
commands = python3 -m coverage erase
[testenv:docs]
extras =
docs
testing
changedir = docs
commands =
python3 -m sphinx -v . {toxinidir}/build/html
[testenv:release]
skip_install = True
deps =
build
twine[keyring]>=1.13
path
passenv =
TWINE_PASSWORD
setenv =
TWINE_USERNAME = {env:TWINE_USERNAME:__token__}
commands =
python3 -c "import path; path.Path('dist').rmtree_p()"
python3 -m build .
python3 -m twine upload ./dist/*
[testenv:report]
deps = coverage
skip_install = true
commands =
python3 -m coverage report
python3 -m coverage html