diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-28 22:50:15 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-28 22:50:15 -0600 |
commit | 7313fa467e6cb06e1f187dcbff2f643d13b4a0b2 (patch) | |
tree | 9c872784d63ac8ccb09bb613e45bc9ec975eed40 /tasks.py | |
parent | 4e2749e8a41a8556a302a7d8f8316549c8558daa (diff) | |
parent | f3676f23183451165185386a0ef5fc2ad910781e (diff) | |
download | cmd2-git-7313fa467e6cb06e1f187dcbff2f643d13b4a0b2.tar.gz |
Merge branch 'plugin_functions' of github.com:python-cmd2/cmd2 into plugin_functions
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,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') |