50792c2ff4
The docs job wasn't working because of an un-renamed file. Coverage wasn't running in jenkins with the xml output file. Remove the .cache.bundle support that we're moving away from. Change-Id: I1140baa53dee8b14ac4d1f8549425a0fdd7a8425
13 lines
237 B
Python
13 lines
237 B
Python
import gettext
|
|
import os
|
|
|
|
gettext.install('cinder')
|
|
|
|
from cinder import utils
|
|
|
|
|
|
def setup(app):
|
|
print "**Autodocumenting from %s" % os.path.abspath(os.curdir)
|
|
rv = utils.execute('./doc/generate_autodoc_index.sh')
|
|
print rv[0]
|