
* The reddwarf-server script can now fork itself and save it's pid. * Changed the tox.ini to not start the fake mode server. Now, two new bin scripts start and stop the server. This should make it easier to run in CI environments.
37 lines
720 B
INI
37 lines
720 B
INI
# To run a specific environment in tox, use the "-e" cmd line flag.
|
|
# For example, to run pep8, use:
|
|
# tox -e pep8
|
|
|
|
[tox]
|
|
envlist = py26, py27
|
|
|
|
[testenv:pep8]
|
|
# Tests pep8 compliance.
|
|
deps = pep8==1.1
|
|
commands = pep8 --repeat --show-source --exclude=.venv,.tox,dist,doc .
|
|
|
|
|
|
[testenv:fake-mode]
|
|
# Fakes Nova, the guest, and other external dependencies to stand up a
|
|
# otherwise valid service api that can be used to test most code paths.
|
|
deps =
|
|
eventlet
|
|
factory_boy
|
|
httplib2
|
|
iso8601
|
|
kombu==1.5.1
|
|
lxml
|
|
mox
|
|
netaddr
|
|
paste
|
|
PasteDeploy
|
|
python-novaclient
|
|
routes
|
|
sphinx
|
|
SQLAlchemy
|
|
sqlalchemy-migrate
|
|
WebOb
|
|
webtest
|
|
commands =
|
|
{envpython} {posargs:DEFAULTS}
|