
bug 1054387 So far unit tests were executed using an in-memory database. Memory was not being freed thus causing oom frequently due to the increased number of unit tests. Since sqlite in memory db do not work very well anyway with nose, we are moving to file-based databases; slower, but safer. Also, this patch removes a bunch of unit tests which do not add anything to code coverage or number or test cases exercised. Change-Id: Ib853727a5268643fbe8a99f6ebd0fc10aca6a43a
24 lines
558 B
Plaintext
24 lines
558 B
Plaintext
[DEFAULT]
|
|
# Show more verbose log output (sets INFO log level output)
|
|
verbose = True
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = False
|
|
|
|
# Address to bind the API server
|
|
bind_host = 0.0.0.0
|
|
|
|
# Port the bind the API server to
|
|
bind_port = 9696
|
|
|
|
# Path to the extensions
|
|
api_extensions_path = unit/extensions
|
|
|
|
# Paste configuration file
|
|
api_paste_config = api-paste.ini.test
|
|
|
|
# The messaging module to use, defaults to kombu.
|
|
rpc_backend = quantum.openstack.common.rpc.impl_fake
|
|
|
|
[DATABASE]
|
|
sql_connection = 'sqlite:///quantum.test.db' |