forked from smarthomeNG/smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
29 lines (26 loc) · 642 Bytes
/
tox.ini
File metadata and controls
29 lines (26 loc) · 642 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
[tox]
;envlist = py34, lint
envlist = py34, py35, py33, py32
skip_missing_interpreters = True
[testenv]
changedir = tests
basepython =
py32: python3.2
py33: python3.3
py34: python3.4
py35: python3.5
setenv =
LANG=de_DE.utf8
PYTHONPATH ={toxinidir}:{toxinidir}/tests:{toxinidir}/lib:{toxinidir}/bin
commands =
py.test -v --timeout=30 --cov --cov-report= {posargs}
deps =
-r{toxinidir}/requirements_all.txt
-r{toxinidir}/requirements_test.txt
[testenv:lint]
basepython = python3
ignore_errors = True
commands =
flake8
pylint bin/smarthome.py
pydocstyle tests