diff options
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 6 | 
1 files changed, 6 insertions, 0 deletions
@@ -19,12 +19,18 @@ pytest-dependency = "*"  pre-commit = "*"  flake8 = "*"  flake8-docstrings = "*" +flake8-bugbear = "*" +flake8-import-order = "*" +flake8-tidy-imports = "*" +flake8-todo = "*" +flake8-string-format = "*"  [requires]  python_version = "3.6"  [scripts]  lint = "flake8" +precommit = "pre-commit install"  test = "py.test tests --cov . --cov-report term-missing -v"  report = "py.test tests --cov . --cov-report=html"  snekbox = "python snekbox.py"  |