summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-07-06 16:17:54 -0400
committerGitHub <noreply@github.com>2019-07-06 16:17:54 -0400
commite18013e7f6be6721531cde163ec4697eac247270 (patch)
tree90dd680110a1d26624e9329d361b4e82733568f9 /tasks.py
parent42bf56f8334cddc0fe3423e98eba5dbc537a4dd8 (diff)
parent5f8599bbc3776bbef8b75ece564969a0a8754990 (diff)
downloadcmd2-git-e18013e7f6be6721531cde163ec4697eac247270.tar.gz
Merge pull request #710 from python-cmd2/pipenv
Add Pipfile to support Pipenv for development
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 4d5a5b64..c38419ec 100644
--- a/tasks.py
+++ b/tasks.py
@@ -233,5 +233,5 @@ namespace.add_task(pypi_test)
@invoke.task
def flake8(context):
"Run flake8 linter and tool for style guide enforcement"
- context.run("flake8 --ignore=E252,W503 --max-complexity=31 --max-line-length=127 --show-source --statistics")
+ context.run("flake8 --ignore=E252,W503 --max-complexity=31 --max-line-length=127 --show-source --statistics --exclude=.git,__pycache__,.tox,.eggs,*.egg,.venv,.idea,.pytest_cache,.vscode,build,dist,htmlcov")
namespace.add_task(flake8)