Skip to content

Commit

Permalink
Ignore silly pep8 warnings reported by recent pep8 versions (1.6.2).
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw committed Mar 4, 2015
1 parent 6ce82f0 commit 1dfc4a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ python:
- "pypy3"

env:
- PEP8_IGNORE=""
- PEP8_IGNORE="E731,W503"

# command to install dependencies
install:
Expand All @@ -24,6 +24,7 @@ script:
--with-doctest
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage report --show-missing --fail-under=100 ; fi
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pep8 --ignore=$PEP8_IGNORE --exclude=conf.py -r --show-source . ; fi
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pep8 --ignore=$PEP8_IGNORE --exclude=conf.py,tests,examples,bench -r --show-source . ; fi

# load coverage status to https://coveralls.io
after_success:
Expand Down

0 comments on commit 1dfc4a8

Please sign in to comment.