diff options
author | Eric Lin <anselor@gmail.com> | 2021-06-16 11:03:04 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2021-06-17 12:50:17 -0400 |
commit | 7fecaa703b6c73170df3aa5bffff2abe6ff58e15 (patch) | |
tree | a5ae5216e21f2035f5adc1d954adc07ea41355e6 /tasks.py | |
parent | da2376571a7775a62689cc5bb383858a5595e067 (diff) | |
download | cmd2-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |