-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
69 lines (55 loc) · 1.23 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
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = style, make-docs, check-manifest, docstyle, py37, py38, py39, py310, py311, coverage
[testenv]
deps =
ipdb
pytest
joblib
jinja2
setenv =
PYTHONBREAKPOINT=ipdb.set_trace
commands =
pytest tests/ -v {posargs}
[testenv:integration]
deps =
{[testenv]deps}
commands =
pytest tests/ -v -m integration {posargs}
[testenv:coverage]
usedevelop = True
deps =
{[testenv]deps}
coverage
pytest-cov
commands =
- coverage erase
pytest tests/ --cov=pycf3 --cov-append --cov-report= {posargs}
coverage report --fail-under=90 -m
[testenv:style]
skip_install = True
usedevelop = False
deps = flake8
flake8-import-order
flake8-black
commands =
flake8 setup.py tests/ pycf3.py {posargs}
[testenv:check-manifest]
skip_install = True
usedevelop = False
deps = check-manifest
commands =
check-manifest
[testenv:docstyle]
deps = pydocstyle
commands =
pydocstyle pycf3.py --convention=numpy
[testenv:make-docs]
basepython = python3.9
usedevelop = True
skip_install = False
changedir = docs
deps =
-r{toxinidir}/docs/requirements.txt
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees source {envtmpdir}/html