-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtox.ini
194 lines (180 loc) · 4.09 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
[tox]
envlist =
py,
doc,
sty,
passenv = PYTHONPATH
skip_install = True
skip_missing_interpreters = True
skipsdist = True
[testenv]
description =
Run all fast unit tests
allowlist_externals =
pytest
commands =
pytest {posargs:tests/unit}
[testenv:cov]
description =
Compute the test coverage of all unit tests
allowlist_externals =
pytest
commands =
pytest {posargs:tests/unit} \
--cov-fail-under=90 \
--cov-report=html \
--cov-report=xml \
--cov=qrules
[testenv:doc]
description =
Build documentation and API through Sphinx
changedir = docs
allowlist_externals =
make
commands =
make html
[testenv:doclive]
description =
Set up a server to directly preview changes to the HTML pages
allowlist_externals =
sphinx-autobuild
passenv =
EXECUTE_NB
TERM
commands =
sphinx-autobuild \
--watch docs \
--watch src \
--re-ignore .*/.ipynb_checkpoints/.* \
--re-ignore .*/__pycache__/.* \
--re-ignore docs/.*\.csv \
--re-ignore docs/.*\.gv \
--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
setenv =
EXECUTE_NB = "yes"
changedir = docs
allowlist_externals =
make
commands =
make html
[testenv:doctest]
description =
Check the doctests in docstrings of the API
changedir = docs
allowlist_externals =
make
commands =
make ignore-warnings=1 doctest # for margin directive
[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:pydeps]
description =
Visualize module dependencies
changedir = src
setenv =
HOME = "."
allowlist_externals = pydeps
commands =
pydeps qrules \
-o module_structure.svg \
--exclude *._* \
--max-bacon=1 \
--noshow
[testenv:sty]
description =
Perform all linting, formatting, and spelling checks
setenv =
SKIP = mypy
allowlist_externals =
bash
mypy
pre-commit
commands =
mypy src tests # run separately because of potential caching problems
pre-commit run {posargs} -a
[testenv:test]
description =
Run ALL tests, including the slow channel tests, and compute coverage
allowlist_externals =
pytest
commands =
pytest {posargs:tests} \
--cov-fail-under=90 \
--cov-report=html \
--cov-report=xml \
--cov=qrules
[coverage:run]
branch = True
source = src
[flake8]
application-import-names =
qrules
filename =
./src/*.py
./tests/*.py
exclude =
__pycache__
docs/conf.py
typings/**
ignore = # more info: https://www.flake8rules.com/
E203 # https://github.com/psf/black#slices
E231 # allowed by black
E501 # https://github.com/psf/black#line-length
RST299 # missing pygments
RST201 # block quote ends without a blank line (black formatting)
RST301 # unexpected indentation (related to google style docstring)
W503 # https://github.com/psf/black#line-breaks--binary-operators
rst-roles =
attr,
cite,
class,
doc,
download,
file,
func,
meth,
mod,
ref,
rst-directives =
deprecated,
envvar,
exception,
glue:figure,
glue:math,
seealso,
[pydocstyle]
convention=google
add_ignore =
D101, # class docstring
D102, # method docstring
D103, # function docstring
D105, # magic method docstring
D107, # init docstring
D203, # conflicts with D211
D213, # multi-line docstring should start at the second line
D407, # missing dashed underline after section
[pytest]
addopts =
--color=yes
--durations=3
filterwarnings =
error
markers =
slow: marks tests as slow (deselect with '-m "not slow"')