summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-06-09 17:10:23 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-06-09 17:10:23 -0400
commit19a1f764119aa1c4e391c06b18c0f101ef20a7ce (patch)
treeb5a39619d46dae538e2334edaf848d1d46f4a167 /tasks.py
parentdd299bf5bf21b175ffdd2caae63cfa8bf1a85c34 (diff)
downloadcmd2-git-19a1f764119aa1c4e391c06b18c0f101ef20a7ce.tar.gz
Removed apparently dead code from argcomplete_bridge.py
Also: - Made some minor formatting changes in argcomplete_bridge.py to make PyCharm happy - Fixed typo where "invoke clean" was cleaning up .pytest-cache instead of .pytest_cache
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 5c0bd772..1aec1548 100644
--- a/tasks.py
+++ b/tasks.py
@@ -49,7 +49,7 @@ namespace.add_task(pytest)
def pytest_clean(context):
"Remove pytest cache and code coverage files and directories"
#pylint: disable=unused-argument
- dirs = ['.pytest-cache', '.cache', 'htmlcov', '.coverage']
+ dirs = ['.pytest_cache', '.cache', 'htmlcov', '.coverage']
rmrf(dirs)
namespace_clean.add_task(pytest_clean, 'pytest')