Clean up gitignore and doctrees

pull/8/head
Eric Holscher 9 years ago
parent 1d3bd2012e
commit 819dfa92ca

1
.gitignore vendored

@ -3,3 +3,4 @@ _build
_build_rtd
readthedocs_build
docs/autoapi
*.egg-info

@ -14,7 +14,7 @@ class FullPythonTests(unittest.TestCase):
if os.path.exists('_build'):
shutil.rmtree('_build')
os.mkdir('_build')
sp.check_call('sphinx-build -b text -d ./doctrees . _build/text', shell=True)
sp.check_call('sphinx-build -b text -d ./.doctrees . _build/text', shell=True)
with open('_build/text/autoapi/example/index.txt') as fin:
text = fin.read().strip()
@ -41,7 +41,7 @@ class FullJavaScriptTests(unittest.TestCase):
if os.path.exists('_build'):
shutil.rmtree('_build')
os.mkdir('_build')
sp.check_call('sphinx-build -b text -d ./doctrees . _build/text', shell=True)
sp.check_call('sphinx-build -b text -d ./.doctrees . _build/text', shell=True)
with open('_build/text/autoapi/Circle/index.txt') as fin:
text = fin.read().strip()

Loading…
Cancel
Save