add pyflakes and enable pep8

This commit is contained in:
Val Neekman 2014-03-08 09:28:04 -05:00
parent 0cf8f1cb09
commit 28afc513fd

View file

@ -12,6 +12,13 @@ install:
- pip install -q Django==$DJANGO
- pip install -q -r requirements.txt
- pip install pep8
- pip install https://github.com/un33k/pyflakes/tarball/master
- pip install -q -e .
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225,E128 ."
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes -x W uuslug; fi
script: python manage.py test