-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (31 loc) · 799 Bytes
/
tox.ini
File metadata and controls
39 lines (31 loc) · 799 Bytes
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
[tox]
envlist=pylint-errors, pylint-warnings, pylint-full
[testenv]
basepython=python3.3
commands=python setup.py test
[testenv:pep8]
basepython=python3.3
deps = pep8
commands = pep8 wispy
[testenv:pylint-errors]
basepython=python3.3
deps = pylint
commands = pylint -f colorized -E wispy
[testenv:pylint-warnings]
basepython=python3.3
deps = pylint
commands = pylint -f colorized -d all -e W -r n wispy
[testenv:pylint-full]
basepython=python3.3
deps = pylint
commands = pylint -f colorized --disable=all -e R,E,W --disable=fixme wispy
[testenv:run-tests]
basepython=python3.3
changedir=tests
deps=modgrammar
commands = python -m unittest discover
;[testenv:docs]
;basepython=python
;changedir=docs
;deps=sphinx
;commands= sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html