Skip to content

Commit

Permalink
ignore W504 line break after binary operato
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Oct 30, 2018
1 parent 3286415 commit c4d4b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ install:
- pip install codecov
- python setup.py install
script:
- flake8 --ignore=E501,E402,F401 src tests
- flake8 --ignore=E501,E402,F401,W504 src tests
- coverage run --append -m unittest discover -v -s tests/
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' && $TRAVIS_BRANCH == 'master' ]]; then codecov; fi
stages:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist = begin,docker,py27,py36,end

[testenv]
commands =
flake8 --ignore=E501,E402,F401 src tests
flake8 --ignore=E501,E402,F401,W504 src tests
coverage run --append -m unittest discover -v -s tests/
deps =
flake8
Expand Down

0 comments on commit c4d4b86

Please sign in to comment.