Skip to content

add flake8 to travis-ci #349

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Mar 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ before_install:
- export PIP_USE_MIRRORS=true
- pip install --upgrade pytest # https://github.com/travis-ci/travis-ci/issues/4873
- pip install --upgrade pip wheel virtualenv setuptools
- pip install pytest-cov coverage codecov
- pip install pytest-cov coverage codecov flake8
install:
- pip install -e .
- pip install -r requirements/test.txt
Expand All @@ -41,7 +41,9 @@ before_script:
- export PATH=$HOME/tmux/bin:$PATH
- cd ..
- tmux -V
script: py.test --cov
script:
- py.test --cov
- make flake8
addons:
apt:
packages:
Expand Down