diff options
author | Victor Sergeyev <vsergeyev@mirantis.com> | 2014-04-18 12:02:53 +0300 |
---|---|---|
committer | Victor Sergeyev <vsergeyev@mirantis.com> | 2014-04-18 12:51:26 +0300 |
commit | 276f7570d7af4a7a62d0e1ffb4edf904cfbf0600 (patch) | |
tree | e86806ebe1c11e57557980649e56f1b9f2bcdcf2 /setup.cfg | |
parent | e4cfa6d39d2aa53af64ab34de97183f98fbeb667 (diff) | |
download | oslo-db-276f7570d7af4a7a62d0e1ffb4edf904cfbf0600.tar.gz |
Make the tests passing
- add missed requirements
- add required modules from openstack.common
- added entry points to setup.cfg
- fixed tests location
- fixed incorrect common modules imports
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -26,6 +26,14 @@ packages = namespace_packages = oslo +[entry_points] +oslo.config.opts = + oslo.db = oslo.db.options:list_opts + +oslo.db.migration = + alembic = oslo.db.sqlalchemy.migration_cli.ext_alembic:AlembicExtension + migrate = oslo.db.sqlalchemy.migration_cli.ext_migrate:MigrateExtension + [build_sphinx] source-dir = doc/source build-dir = doc/build @@ -46,4 +54,4 @@ input_file = oslo.db/locale/oslo.db.pot [extract_messages] keywords = _ gettext ngettext l_ lazy_gettext mapping_file = babel.cfg -output_file = oslo.db/locale/oslo.db.pot
\ No newline at end of file +output_file = oslo.db/locale/oslo.db.pot |