-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (32 loc) · 706 Bytes
/
tox.ini
File metadata and controls
42 lines (32 loc) · 706 Bytes
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
[tox]
envlist =
coverage_clean
py{3.7,3.8,3.9,3.10,3.11,3.12,3.13}
coverage_report
[testenv]
basepython =
py3.7: python3.7
py3.8: python3.8
py3.9: python3.9
py3.10: python3.10
py3.11: python3.11
py3.12: python3.12
py3.13: python3.13
extras = develop
commands =
coverage run --parallel-mode -m pytest --pylama
python setup.py check --metadata --restructuredtext --strict
[testenv:coverage_clean]
basepython = python
skip_install = True
deps = coverage
commands =
coverage erase
[testenv:coverage_report]
basepython = python
skip_install = True
deps = coverage
commands =
coverage combine
coverage report --show-missing
coverage html