New pep8 version added a warning W503 which we will ignore

This commit is contained in:
Raphael Michel
2015-02-18 10:52:38 +01:00
parent 73aa3fb4bc
commit 3f7d3711ef
3 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ install:
- pip install -q -r src/requirements.txt
before_script:
- cd src
- flake8 --ignore=E123,E128,F403,F401,N802,C901 .
- flake8 --ignore=E123,E128,F403,F401,N802,C901,W503 .
- python manage.py check
- python manage.py validate
script: