forked from kennknowles/python-jsonpath-rw
-
Notifications
You must be signed in to change notification settings - Fork 89
/
tox.ini
48 lines (39 loc) · 757 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
46
47
48
[tox]
min_version = 4.3.5
envlist =
coverage-erase
py{3.12, 3.11, 3.10, 3.9, 3.8}
coverage-report
skip_missing_interpreters = True
isolated_build = True
[testenv]
package = wheel
wheel_build_env = build_wheel
depends =
py{3.12, 3.11, 3.10, 3.9, 3.8}: coverage-erase
deps =
coverage[toml]
pytest
pytest-randomly
commands =
coverage run -m pytest
[testenv:coverage-erase]
no_package = true
skip_install = true
deps =
coverage[toml]
commands =
coverage erase
[testenv:coverage-report]
depends =
py{3.12, 3.11, 3.10, 3.9, 3.8}
no_package = true
skip_install = true
deps =
coverage[toml]
commands_pre =
- coverage combine
commands =
coverage report
command_post =
coverage html --fail-under=0