summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-20 17:08:23 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-20 18:32:19 -0500
commit6a672b1b7016fd642ef170b71d946cc4060ce8f9 (patch)
tree8223c3609bc85b291f5fe6e818b9612d2b4ba436 /noxfile.py
parent19633fd2cb68a648a91671169287ab512f228ffb (diff)
downloadrequests-cache-6a672b1b7016fd642ef170b71d946cc4060ce8f9.tar.gz
Move autosummaries to module docstrings instead of template, to make them easier to customize
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 fad58ab..872c5be 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', '**/modules/*']
+LIVE_DOCS_IGNORE = ['*.pyc', '*.tmp']
LIVE_DOCS_WATCH = ['requests_cache', 'examples']
-CLEAN_DIRS = ['dist', 'build', join('docs', '_build'), join('docs', 'modules')]
+CLEAN_DIRS = ['dist', 'build', join('docs', '_build')]
UNIT_TESTS = join('tests', 'unit')
INTEGRATION_TESTS = join('tests', 'integration')