Skip to content
Snippets Groups Projects
Commit 48568aef authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

xbob -> bob

parent 076ae22a
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 18 deletions
......@@ -25,8 +25,8 @@ install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/python -c 'from xbob.db.base import get_config; print(get_config())'"
- "./bin/coverage run --source=xbob.db.base ./bin/nosetests -sv"
- "./bin/python -c 'from bob.db.base import get_config; print(get_config())'"
- "./bin/coverage run --source=bob.db.base ./bin/nosetests -sv"
- "./bin/sphinx-build -b doctest doc sphinx"
- "./bin/sphinx-build -b html doc sphinx"
after_success:
......
include LICENSE README.rst bootstrap.py buildout.cfg
recursive-include doc conf.py *.rst
recursive-include xbob/db/base/data *.lst
recursive-include bob/db/base/data *.lst
......@@ -2,19 +2,19 @@
.. Andre Anjos <andre.anjos@idiap.ch>
.. Thu 29 Aug 2013 16:07:57 CEST
.. image:: https://travis-ci.org/bioidiap/xbob.db.base.svg?branch=master
:target: https://travis-ci.org/bioidiap/xbob.db.base
.. image:: https://coveralls.io/repos/bioidiap/xbob.db.base/badge.png
:target: https://coveralls.io/r/bioidiap/xbob.db.base
.. image:: http://img.shields.io/github/tag/bioidiap/xbob.db.base.png
:target: https://github.com/bioidiap/xbob.db.base
.. image:: http://img.shields.io/pypi/v/xbob.db.base.png
:target: https://pypi.python.org/pypi/xbob.db.base
.. image:: http://img.shields.io/pypi/dm/xbob.db.base.png
:target: https://pypi.python.org/pypi/xbob.db.base
.. image:: https://travis-ci.org/bioidiap/bob.db.base.svg?branch=master
:target: https://travis-ci.org/bioidiap/bob.db.base
.. image:: https://coveralls.io/repos/bioidiap/bob.db.base/badge.png
:target: https://coveralls.io/r/bioidiap/bob.db.base
.. image:: http://img.shields.io/github/tag/bioidiap/bob.db.base.png
:target: https://github.com/bioidiap/bob.db.base
.. image:: http://img.shields.io/pypi/v/bob.db.base.png
:target: https://pypi.python.org/pypi/bob.db.base
.. image:: http://img.shields.io/pypi/dm/bob.db.base.png
:target: https://pypi.python.org/pypi/bob.db.base
==================================
Python bindings for xbob.db.base
Python bindings for bob.db.base
==================================
This package contains a set of Pythonic bindings for Bob's database packages
......@@ -42,7 +42,7 @@ Testing
You can run a set of tests using the nose test runner::
$ nosetests -sv xbob.db.base
$ nosetests -sv bob.db.base
.. warning::
......@@ -59,7 +59,7 @@ You can run our documentation tests using sphinx itself::
You can test overall test coverage with::
$ nosetests --with-coverage --cover-package=xbob.db.base
$ nosetests --with-coverage --cover-package=bob.db.base
The ``coverage`` egg must be installed for this to work properly.
......
File moved
File moved
File moved
......@@ -119,7 +119,7 @@ class Interface(with_metaclass(abc.ABCMeta, object)):
'''Returns the type of auxiliary files you have for this database
If you return 'sqlite', then we append special actions such as 'dbshell'
on 'xbob_dbmanage.py' automatically for you. Otherwise, we don't.
on 'bob_dbmanage.py' automatically for you. Otherwise, we don't.
If you use auxiliary text files, just return 'text'. We may provide
special services for those types in the future.
......
......@@ -134,7 +134,7 @@ def create_parser(**kwargs):
subparsers = parser.add_subparsers(title='databases')
# for external entries
for entrypoint in pkg_resources.iter_entry_points('xbob.db'):
for entrypoint in pkg_resources.iter_entry_points('bob.db'):
plugin = entrypoint.load()
# at this point we should have loaded all databases
......
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment