summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2021-06-16 11:03:04 -0400
committeranselor <anselor@gmail.com>2021-06-17 12:50:17 -0400
commit7fecaa703b6c73170df3aa5bffff2abe6ff58e15 (patch)
treea5ae5216e21f2035f5adc1d954adc07ea41355e6 /tasks.py
parentda2376571a7775a62689cc5bb383858a5595e067 (diff)
downloadcmd2-git-7fecaa703b6c73170df3aa5bffff2abe6ff58e15.tar.gz
Excluding more temporary directories from the manifest. Added plugins back in to enable isolated tests
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index ef6f3041..58bd1df8 100644
--- a/tasks.py
+++ b/tasks.py
@@ -152,7 +152,7 @@ namespace.add_task(docs)
def doc8(context):
"""Check documentation with doc8"""
with context.cd(TASK_ROOT_STR):
- context.run('doc8 docs --ignore-path docs/_build')
+ context.run('doc8 docs --ignore-path docs/_build --ignore-path docs/.nox')
namespace.add_task(doc8)