So we sucessfully set up doctr to generate the documentation for statsmodels. Cool tool, I like it.
However, statsmodels generates lots, and lots, and lots of files for itss docs.
It looks like doctr is taking about 20 minutes to cycle through the git add file here:
|
DOCTR_COMMAND = ' '.join(map(shlex.quote, sys.argv)) |
|
|
|
for f in added: |
|
run(['git', 'add', f]) |
|
for f in removed: |
|
run(['git', 'rm', f]) |
Any ideas how to speed this up?
So we sucessfully set up doctr to generate the documentation for statsmodels. Cool tool, I like it.
However, statsmodels generates lots, and lots, and lots of files for itss docs.
It looks like doctr is taking about 20 minutes to cycle through the
git add filehere:doctr/doctr/travis.py
Lines 477 to 482 in 5067c1e
Any ideas how to speed this up?