-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtox.ini
More file actions
67 lines (53 loc) · 1.02 KB
/
tox.ini
File metadata and controls
67 lines (53 loc) · 1.02 KB
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
[tox]
envlist = mypy, py3.{13,14}
[testenv]
package = wheel
wheel_build_env = .pkg
deps=
pytest
pytest-raises
commands =
pytest
[testenv:install]
skip_install = True
deps=
build
twine
commands=
pip check {toxinidir}
python -m build {toxinidir}
twine check {toxinidir}/dist/*
[testenv:mypy]
skip_install = True
deps=[]
mypy
commands=
mypy {toxinidir}/src/sbmlsim {toxinidir}/tests --config-file tox.ini
[pytest]
testpaths =
tests
markers =
raises
[mypy]
warn_return_any = True
follow_imports = silent
disallow_untyped_defs = True
disallow_incomplete_defs = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-pydantic.*]
ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True
[mypy-libcombine.*]
ignore_missing_imports = True
[mypy-pronto.*]
ignore_missing_imports = True
[mypy-rich.*]
ignore_missing_imports = True
[mypy-jinja2.*]
ignore_missing_imports = True
[mypy-zeep.*]
ignore_missing_imports = True
[mypy-xmltodict.*]
ignore_missing_imports = True