Commit fcde0eb5 by Simon János

updated .gitignore and tox.ini; added pylint.conf

parent f98d1c78
......@@ -3,3 +3,4 @@
*.egg-info
*.pyc
__pycache__
.cache
[BASIC]
persistent = no
[MESSAGES CONTROL]
# C0111 Missing docstring
# R0903: Too few public methods (%s/%s)
disable = C0111,R0903
max-line-length = 120
;max-args:6
;max-public-methods:25
# Regular expression which should only match correct method names
method-rgx = [a-z_][a-z0-9_]{1,50}$
attr-rgx = [a-z_][a-z0-9_]{1,50}$
[tox]
envlist = py27
envlist = py27, py34
[testenv]
deps =
[dependencies]
production =
enum34
voluptuous
; celery
test =
pytest
pytest-pylint
flake8
; flower
[testenv]
deps =
{[dependencies]production}
{[dependencies]test}
commands =
flake8 orchestrator
py.test -s tests
py.test -s --pylint --pylint-rcfile=pylint.conf
[flake8]
max-line-length = 120
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment