Changeset - 97748a0f7ffa
[Not reviewed]
0 2 0
Sachi King - 7 years ago 2017-03-31 00:54:46
nakato@nakato.io
Kludge tox to run flake8

This hasn't been run in a loong time...
2 files changed with 15 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.gitignore
Show inline comments
...
 
@@ -11,3 +11,5 @@ local_settings.py
 
\.#*
 
*#*#
 
.ve2
 
ve2
 
.tox
tox.ini
Show inline comments
 
[tox]
 
minversion = 1.6
 
skipsdist = True
 
envlist = pep8
 

	
 
[testenv]
 
basepython = python2.7
 
skip_install = True
 
install_command = pip install {opts} {packages}
 
deps = flake8
 
commands = flake8 {posargs}
 

	
 
[flake8]
 
ignore = E265,E501
 
max-line-length = 100
 
max-complexity = 10
 
exclude = .venv,.tox,ve2,.ve2,cms_pages,pinaxcon/proposals/migrations,pinaxcon/registrasion/migrations
0 comments (0 inline, 0 general)