Add tox-based tests support

Change-Id: I01715ba96a062e7a297b3f8ccbbbcbb7bff83763
This commit is contained in:
MORITA Kazutaka 2014-03-26 10:54:42 +09:00
parent 6232baa895
commit 9a8e79ffcb
2 changed files with 38 additions and 0 deletions

4
test-requirements.txt Normal file
View File

@ -0,0 +1,4 @@
hacking
sphinx
nose
coverage

34
tox.ini Normal file
View File

@ -0,0 +1,34 @@
[tox]
envlist = py26,py27,pep8
minversion = 1.6
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
deps =
https://launchpad.net/swift/icehouse/1.13.0/+download/swift-1.13.0.tar.gz
-r{toxinidir}/test-requirements.txt
commands = nosetests {posargs:swift3/test/unit}
setenv = VIRTUAL_ENV={envdir}
[testenv:pep8]
commands = flake8
[testenv:venv]
commands = {posargs}
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
NOSE_WITH_COVERAGE=1
NOSE_COVER_PACKAGE=swift3
[tox:jenkins]
downloadcache = ~/cache/pip
[flake8]
# follow the same style guidelines with swift
ignore = H
select = H102,H103,H201,H501,H903
exclude = .venv,.git,.tox,dist,doc,*egg,build
show-source = True