-
Notifications
You must be signed in to change notification settings - Fork 4
/
tox.ini
183 lines (147 loc) · 3.44 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
[tox]
envlist = isort, black, flake8, mypy, safety, py3{8,9}
[gh-actions]
# We ignore mypy for the time being because there are tons of things to fix.
python =
3.8: py38
3.9: isort, black, flake8, safety, py39
[testenv]
deps=
pytest
pytest-cov
pytest-raises
commands =
pytest --cov=sbmlutils --cov-report=xml
[testenv:isort]
skip_install = True
deps=
isort
commands=
isort --check-only --diff {toxinidir}/src/sbmlsim {toxinidir}/setup.py {toxinidir}/tests
[testenv:black]
skip_install = True
deps=
black
commands=
black --check --diff {toxinidir}/src/sbmlsim {toxinidir}/setup.py {toxinidir}/tests
[testenv:flake8]
skip_install = True
deps=
flake8
flake8-docstrings
flake8-bugbear
commands=
flake8 {toxinidir}/src/sbmlsim {toxinidir}/setup.py {toxinidir}/tests --exclude {toxinidir}/src/sbmlsim/_deprecated/tesedml.py,{toxinidir}/src/sbmlsim/examples/,{toxinidir}/src/sbmlsim/combine/**/*.py --extend-ignore=F401,F403,F405,E501
# F401 : module imported but unused
# F403 : 'from .x import *' used; unable to detect undefined names
# F405 : name may be undefined, or defined from star imports: module
# E501 : line too long
[testenv:mypy]
skip_install = True
deps=
mypy
commands=
mypy {toxinidir}/src/sbmlsim {toxinidir}/setup.py {toxinidir}/tests --config-file tox.ini
[testenv:safety]
deps=
safety
commands=
safety check --full-report
[testenv:install]
skip_install = True
deps=
build
twine
commands=
pip check {toxinidir}
python -m build {toxinidir}
twine check {toxinidir}/dist/*
################################################################################
# Testing tools configuration #
################################################################################
[pytest]
testpaths =
tests
markers =
raises
[coverage:paths]
source =
src/sbmlsim
*/site-packages/sbmlsim
[coverage:run]
branch = true
parallel = true
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
precision = 2
[isort]
skip = __init__.py
profile = black
lines_after_imports = 2
known_first_party = sbmlsim
known_third_party =
pymetadata
sbmlutils
libsbml
libsedml
libcombine
numpy
scipy
pandas
pytest
roadrunner
plotly
xarray
seaborn
[flake8]
exclude =
__init__.py
max-line-length = 88
# The following conflict with `black` which is the more pedantic.
ignore =
E203
W503
D202
[mypy]
# mypy src/sbmlsim --config-file tox.ini
warn_return_any = True
follow_imports = silent
disallow_untyped_defs = True
disallow_incomplete_defs = True
# FIXME
[mypy-sbmlsim.examples.*]
ignore_errors = True
[mypy-sbmlsim._deprecated.*]
ignore_errors = True
[mypy-sbmlsim.combine.*]
ignore_errors = True
[mypy-sbmlsim.oven.*]
ignore_errors = True
[mypy-sbmlutils.*]
ignore_missing_imports = True
[mypy-pymetadata.*]
ignore_missing_imports = True
[mypy-libsbml.*]
ignore_missing_imports = True
[mypy-libsedml.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-seaborn.*]
ignore_missing_imports = True
[mypy-xarray.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-roadrunner.*]
ignore_missing_imports = True
[mypy-ray.*]
ignore_missing_imports = True
[mypy-sympy.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True