diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-07-06 16:17:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-06 16:17:54 -0400 |
commit | e18013e7f6be6721531cde163ec4697eac247270 (patch) | |
tree | 90dd680110a1d26624e9329d361b4e82733568f9 /tasks.py | |
parent | 42bf56f8334cddc0fe3423e98eba5dbc537a4dd8 (diff) | |
parent | 5f8599bbc3776bbef8b75ece564969a0a8754990 (diff) | |
download | cmd2-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |