From 9331f787ed7ce025531f690823e1aac249e33db2 Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Sat, 28 Aug 2021 14:46:27 -0500 Subject: Clear/ignore apidoc files when using sphinx-autobuild --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'noxfile.py') diff --git a/noxfile.py b/noxfile.py index 872c5be..941b945 100644 --- a/noxfile.py +++ b/noxfile.py @@ -13,9 +13,9 @@ nox.options.reuse_existing_virtualenvs = True nox.options.sessions = ['lint', 'cov'] LIVE_DOCS_PORT = 8181 -LIVE_DOCS_IGNORE = ['*.pyc', '*.tmp'] +LIVE_DOCS_IGNORE = ['*.pyc', '*.tmp', join('**', 'modules', '*')] LIVE_DOCS_WATCH = ['requests_cache', 'examples'] -CLEAN_DIRS = ['dist', 'build', join('docs', '_build')] +CLEAN_DIRS = ['dist', 'build', join('docs', '_build'), join('docs', 'modules')] UNIT_TESTS = join('tests', 'unit') INTEGRATION_TESTS = join('tests', 'integration') -- cgit v1.2.1