From 819dfa92ca8335f6d4b763ce51da879d2f8600c5 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Sat, 6 Jun 2015 13:45:04 -0700 Subject: [PATCH] Clean up gitignore and doctrees --- .gitignore | 1 + tests/test_full.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0e03ef1..96cf4a0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ _build _build_rtd readthedocs_build docs/autoapi +*.egg-info diff --git a/tests/test_full.py b/tests/test_full.py index 94a24b3..22c0372 100644 --- a/tests/test_full.py +++ b/tests/test_full.py @@ -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()