blob: 57ff086b94749b14de8677d181f63266faaa4014 (
plain)
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
|
[tox]
envlist = py26,py27,pep8
[testenv]
whitelist_externals=bash
setenv = VIRTUAL_ENV={envdir}
deps =
--download-cache={homedir}/.pipcache
-r{toxinidir}/test-requirements.txt
changedir = {toxinidir}/tests/unit
commands = nosetests -v --exe --with-xunit --with-coverage --cover-package syncdaemon --cover-erase --cover-xml --cover-html --cover-branches --with-html-output {posargs}
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
changedir = {toxinidir}
commands =
flake8
flake8 syncdaemon tests
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1
[testenv:venv]
commands = {posargs}
[flake8]
ignore = H
builtins = _
exclude = .venv,.tox,dist,doc,tests,*egg
show-source = True
|