forked from happyleavesaoc/python-snapcast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (31 loc) · 657 Bytes
/
tox.ini
File metadata and controls
36 lines (31 loc) · 657 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
[tox]
envlist = py35, lint
skip_missing_interpreters = True
[tool:pytest]
testpaths = tests
[flake8]
exclude =
.tox
# match pylint line length
max-line-length = 100
[testenv]
ignore_errors = True
setenv =
LANG=en_US.UTF-8
PYTHONPATH={toxinidir}:{toxinidir}/snapcast
PYTHON_ENV=test
deps =
pytest==3.0.4
pytest-cov==2.4.0
pytest-sugar==0.8.0
pylint==1.6.4
flake8==3.2.1
pydocstyle==1.1.1
commands =
py.test --cov-report term-missing --cov snapcast
[testenv:lint]
ignore_errors = True
commands =
pylint --output-format=colorized snapcast/control
flake8 snapcast/control
pydocstyle snapcast/control