Skip to content

Commit

Permalink
Enable travis to run pylint and pep8 tox env
Browse files Browse the repository at this point in the history
Currently Travis-CI is only running tox with venv for py27,py35,py36,
and pypy. But the venv for pylint and pep8 are defined in tox and
should be run also.
  • Loading branch information
ericwb committed Jun 25, 2018
1 parent 386eb19 commit 17f8d83
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
language: python

cache: pip

sudo: false

install:
- pip install tox

script: tox

matrix:
include:
- python: 2.7
env: TOXENV=pylint
- python: 2.7
env: TOXENV=pep8
- python: 2.7
env: TOXENV=py27
- python: 3.5
Expand All @@ -22,4 +31,4 @@ notifications:
channels:
- "irc.freenode.org##python-code-quality"
use_notice: true
skip_join: true
skip_join: true

0 comments on commit 17f8d83

Please sign in to comment.