added pip and test requirements

This commit is contained in:
jfwood 2013-03-01 14:55:06 -08:00
parent a604b63d84
commit d4025c2dc3
3 changed files with 18 additions and 1 deletions

11
tools/pip-requires Normal file

@ -0,0 +1,11 @@
falcon
uWSGI>=1.4.5
wsgiref>=0.1.2
pymongo>=2.4.2
# Right now this is the location for oslo-config (its not in PyPi yet)
http://tarballs.openstack.org/oslo-config/oslo-config-2013.1b3.tar.gz#egg=oslo-config
# SQLAlchemy 0.7.10 typically has issues installing via pip, since it
# will be removed as a dependency soon we will just grab the tarball
https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-0.7.10.tar.gz#md5=ecc0cd1cd906d17818a5f08fe13ae19e

4
tools/test-requires Normal file

@ -0,0 +1,4 @@
mock>=1.0.0
nose
nosexcover
testtools

@ -2,6 +2,8 @@
envlist = py27
[testenv]
deps = -r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
[testenv:py27]
commands = nosetests {posargs:--with-xcoverage --with-xunit --cover-package=meniscus}
commands = nosetests {posargs:--with-xcoverage --with-xunit --cover-package=barbican}