-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
151 lines (138 loc) · 3.16 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
# largely adapted from the flake8 repository: https://gitlab.com/pycqa/flake8/blob/master/tox.ini
[tox]
minversion=2.3.1
envlist = py37, py38, flake8, linters, docs
whitelist_externals=make
[testenv]
deps =
mock
nose
coverage
-r{toxinidir}/requirements.txt
setenv =
MPLBACKEND = Agg
commands =
nosetests {posargs:--with-coverage --cover-package=philistine --cover-branches}
; commands =
; coverage run --parallel-mode -m pytest {posargs}
; coverage combine
; coverage report -m
# Linters
[testenv:flake8]
basepython = python3
skip_install = true
deps =
flake8
flake8-docstrings>=0.2.7
flake8-import-order>=0.9
pep8-naming
flake8-colors
commands =
flake8 philistine
[testenv:pylint]
basepython = python3
skip_install = true
deps =
pyflakes
pylint
commands =
pylint philistine
#[testenv:doc8]
#basepython = python3
#skip_install = true
#deps =
# sphinx
# doc8
#commands =
# doc8 docs/source/
[testenv:linters]
basepython = python3
skip_install = true
deps =
{[testenv:flake8]deps}
# {[testenv:pylint]deps}
# {[testenv:doc8]deps}
# {[testenv:readme]deps}
commands =
{[testenv:flake8]commands}
# {[testenv:pylint]commands}
# {[testenv:doc8]commands}
# {[testenv:readme]commands}
# Documentation
[testenv:docs]
basepython = python3
deps =
sphinx
sphinx_rtd_theme
-r{toxinidir}/requirements.txt
commands =
sphinx-build -E -c docs -b html "docs" "docs/_build"
; [testenv:serve-docs]
; basepython = python3
; skip_install = true
; changedir = docs/build/html
; deps =
; commands =
; python -m http.server {posargs}
[testenv:readme]
basepython = python3
deps =
readme_renderer
commands =
python setup.py check -r -s
; # Release tooling
; [testenv:build]
; basepython = python3
; skip_install = true
; deps =
; wheel
; setuptools
; commands =
; python setup.py -q sdist bdist_wheel
;
; [testenv:release]
; basepython = python3
; skip_install = true
; deps =
; {[testenv:build]deps}
; twine >= 1.5.0
; commands =
; {[testenv:build]commands}
; twine upload --skip-existing dist/*
# Flake8 Configuration
[flake8]
; E225 'missing whitespace around operator has a lot of false positives
; for optional parameters in function definitions
ignore = D203, D413, W504, E225
;MNE ignore
;ignore = D203, D413, W504
;MNE excludes
;exclude = __init__.py,*externals*,constants.py,fixes.py
exclude =
.tox,
.git,
__pycache__,
docs/conf.py,
setup.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs,
__init__.py
max-complexity = 10
; import-order-style = google
; application-import-names = flake8
format = ${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s
[pycodestyle]
ignore = E241,E305,W504
[pydocstyle]
; adopted from MNE-Python
convention = pep257
;match_dir = ^(?!\.|externals|doc|tutorials|examples|logo|tests).*$
;match = (?!test_|fixes).*\.py
add-ignore = D100,D107,D413
add-select = D214,D215,D404,D405,D406,D407,D408,D409,D410,D411
;ignore-decorators = ^(copy_.*_doc_to_|on_trait_change|cached_property|deprecated|property|.*setter).*