You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
961 B
37 lines
961 B
# The official style guide for Gertty is this: |
|
# |
|
# Try to match the existing code style and don't worry about it |
|
# too much. |
|
# |
|
# Please don't submit changes to enable pep8 style checks or change |
|
# the code to match pep8 guidelines. Gertty should be fun to work on |
|
# and it shouldn't be hard to go with the flow and not worry too much |
|
# about whitespace. |
|
# |
|
# Pyflakes on the other hand is a useful system that often catches |
|
# real bugs and errors. Flake8 is used to invoke pyflakes because it |
|
# supports the "NOQA" flag. |
|
|
|
[tox] |
|
minversion = 1.6 |
|
skipsdist = True |
|
envlist = pyflakes |
|
|
|
[testenv] |
|
setenv = VIRTUAL_ENV={envdir} |
|
usedevelop = True |
|
install_command = pip install {opts} {packages} |
|
deps = -r{toxinidir}/requirements.txt |
|
|
|
[testenv:pyflakes] |
|
commands = flake8 |
|
deps = flake8 |
|
|
|
[testenv:venv] |
|
commands = {posargs} |
|
|
|
[flake8] |
|
# Please do not fix these. See comment at top of file. |
|
ignore = W,E |
|
show-source = True |
|
exclude = .venv,.tox,dist,doc,build,*.egg
|
|
|