This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tox.ini
105 lines (98 loc) · 2.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tox]
envlist =
py,
doc,
sty,
passenv = PYTHONPATH
skip_install = True
skip_missing_interpreters = True
skipsdist = True
[testenv]
description =
Run all fast unit tests and doctests
changedir = tests
allowlist_externals =
pytest
commands =
pytest {posargs:unittests}
[testenv:cov]
description =
Compute the test coverage of all unit tests
changedir = tests
allowlist_externals =
pytest
commands =
pytest {posargs} \
--cov-fail-under=70 \
--cov-report=html \
--cov-report=xml \
--cov=pycompwa
[testenv:doc]
description =
Build documentation and API through Sphinx
changedir = docs
passenv =
ROOTSYS
allowlist_externals =
make
commands =
make html
[testenv:doclive]
description =
Set up a server to directly preview changes to the HTML pages
changedir = .
passenv =
EXECUTE_NB
ROOTSYS
TERM
allowlist_externals =
sphinx-autobuild
commands =
sphinx-autobuild \
--watch docs \
--watch src/pycompwa \
--re-ignore .*/.ipynb_checkpoints/.* \
--re-ignore .*/__pycache__/.* \
--re-ignore docs/.*\.csv \
--re-ignore docs/.*\.gv \
--re-ignore docs/.*\.inc \
--re-ignore docs/.*\.inv \
--re-ignore docs/.*\.json \
--re-ignore docs/.*\.pickle \
--re-ignore docs/.*\.yaml \
--re-ignore docs/.*\.yml \
--re-ignore docs/_build/.* \
--re-ignore docs/api/.* \
--open-browser \
docs/ docs/_build/html
[testenv:docnb]
description =
Build documentation through Sphinx WITH output of Jupyter notebooks
changedir = docs
passenv =
ROOTSYS
setenv =
EXECUTE_NB = "yes"
allowlist_externals =
make
commands =
make html
[testenv:linkcheck]
description =
Check external links in the documentation (requires internet connection)
changedir = docs
allowlist_externals =
make
commands =
make ignore-warnings=1 linkcheck # for margin directive
[testenv:sty]
description =
Perform all linting, formatting, and spelling checks
passenv =
SKIP
setenv =
SKIP = flake8, pylint
allowlist_externals =
pre-commit
commands =
pre-commit run {posargs} -a