forked from biosustain/cameo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
108 lines (91 loc) · 1.91 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
[tox]
envlist = flake8, py3{6,7,8}
[gh-actions]
python =
3.6: flake8, py36
3.7: py37
3.8: py38
[testenv]
deps =
pytest
pytest-cov
pytest-benchmark
plotly
whitelist_externals =
obabel
setenv =
CI = True
commands =
pytest --cov=cameo {posargs: -v -rsx --cov-report=xml --cov-report=term --benchmark-skip tests}
[testenv:flake8]
skip_install = True
deps = flake8
commands = flake8 cameo
[pytest]
filterwarnings =
ignore::DeprecationWarning:cobra.core.reaction
[flake8]
max-line-length = 120
ignore =
E402
E303
E122
F401
F812
exclude =
__init__.py
_version.py
plotting_old.py
# TODO: the following needs to go down significantly
max-complexity = 26
[isort]
skip =
__init__.py
indent = 4
line_length = 120
multi_line_output = 4
known_first_party = cameo
known_third_party =
cobra
future
[coverage:paths]
source =
cameo
*/site-packages/cameo
[coverage:run]
parallel = True
branch = True
omit =
cameo/strain_design/heuristic/plotters.py
cameo/strain_design/heuristic/multiprocess/plotters.py
cameo/visualization/*
cameo/_version.py
cameo/stuff/*
cameo/ui/*
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
# Don't test visualization stuff
def display_on_map.*
def plot.*
ignore_errors = True
omit =
cameo/strain_design/heuristic/plotters.py
cameo/strain_design/heuristic/multiprocess/plotters.py
cameo/visualization/*
cameo/_version.py
cameo/stuff/*
cameo/ui/*
[coverage:html]
directory = tests/coverage