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()