summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-28 14:46:27 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-28 14:46:27 -0500
commit9331f787ed7ce025531f690823e1aac249e33db2 (patch)
tree7c82219fd8d7aff80a2686d691ef8c9f414de8bc /noxfile.py
parent9aa409d08cb60e9ada294e5f00be56203672103b (diff)
downloadrequests-cache-9331f787ed7ce025531f690823e1aac249e33db2.tar.gz
Clear/ignore apidoc files when using sphinx-autobuild
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py4
1 files changed, 2 insertions, 2 deletions
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')