53c386af68
Rationale: when deploying the proxy, operators should be the only ones that have access to the administrative functionality - primarily, the management of partitions. This split makes it possible to deploy the forwarding portion of the proxy independently of the administrative portion. The appropriate changes in tests, setup.cfg, and configuration files (see: I7cf25e47ecff47934b50c21000b31308e1a4c8a9) were made. Certain helpers that are reused for wsgi transport implementations were extracted to a common location to aid reuse. Unit tests were also simplified for the proxy, with the intent to make them more thorough in coming patches. New test requirement: httpretty - used to perform request mocking during proxy transport unit tests Change-Id: Ia26981a78c477a896370c48768e71f45c364c769 Implements: blueprint placement-service
70 lines
1.9 KiB
INI
70 lines
1.9 KiB
INI
[metadata]
|
|
name = marconi
|
|
version = 2013.2
|
|
summary = OpenStack Queuing and Notification Service
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 2.6
|
|
|
|
[files]
|
|
packages =
|
|
marconi
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
marconi-server = marconi.cmd.server:run
|
|
|
|
marconi.queues.storage =
|
|
sqlite = marconi.queues.storage.sqlite.driver:Driver
|
|
mongodb = marconi.queues.storage.mongodb.driver:Driver
|
|
|
|
marconi.queues.transport =
|
|
wsgi = marconi.queues.transport.wsgi.driver:Driver
|
|
|
|
marconi.common.cache.backends =
|
|
memory = marconi.common.cache._backends.memory:MemoryBackend
|
|
memcached = marconi.common.cache._backends.memcached:MemcachedBackend
|
|
|
|
marconi.proxy.storage =
|
|
memory = marconi.proxy.storage.memory.driver:Driver
|
|
mongodb = marconi.proxy.storage.mongodb.driver:Driver
|
|
|
|
marconi.proxy.public.transport =
|
|
wsgi = marconi.proxy.transport.wsgi.public.driver:Driver
|
|
|
|
marconi.proxy.admin.transport =
|
|
wsgi = marconi.proxy.transport.wsgi.admin.driver:Driver
|
|
|
|
[nosetests]
|
|
where=tests
|
|
verbosity=2
|
|
|
|
with-doctest = true
|
|
|
|
cover-package = marconi
|
|
cover-html = true
|
|
cover-erase = true
|
|
cover-inclusive = true
|
|
|
|
; Disabled: Causes a bug in testtools to manifest.
|
|
; Trigger: self.assertX(condition), where condition == False.
|
|
;
|
|
; In "testtools/testresult/real.py" the traceback is set to
|
|
; None in _details_to_exc_info(), but the inspect_traceback()
|
|
; method in nose/inspector.py requires a traceback-like object.
|
|
;
|
|
; detailed-errors = 1
|
|
|