forked from BlueBrain/NeuroM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
47 lines (41 loc) · 820 Bytes
/
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
[base]
name = neurom
testdeps =
mock
nose
[tox]
envlist =
lint
py27
py36
coverage
[testenv]
deps = {[base]testdeps}
extras = plotly
commands = nosetests
[testenv:lint]
deps =
pycodestyle==2.3.1
pylint==1.9.4
commands =
pycodestyle --config=pycodestylerc --exclude=tests neurom
pylint --rcfile=pylintrc --extension-pkg-whitelist=numpy --ignore=tests neurom
[testenv:coverage]
deps =
{[base]testdeps}
coverage
commands =
nosetests -v --with-coverage --cover-min-percentage=100 --cover-erase --cover-package neurom
[testenv:docs]
changedir = doc
deps =
sphinx
sphinx-autorun
sphinxcontrib-napoleon
sphinx_rtd_theme
mock
commands = make html
whitelist_externals = make
[pycodestyle]
ignore=E121,E123,E126,E127,E261
max-line-length=100