Skip to content

Commit

Permalink
Add travis
Browse files Browse the repository at this point in the history
  • Loading branch information
aragilar committed Nov 15, 2018
1 parent a323b08 commit a52f18a
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .travis.yml
@@ -0,0 +1,49 @@
language: python

sudo: false

cache:
directories:
- $HOME/.cache/pip

matrix:
include:
- python: 3.4
env:
- TOXENV=py34
- python: 3.5
env:
- TOXENV=py35
- python: 3.6
env:
- TOXENV=py36
- python: 3.5
env:
- TOXENV=flake8
- python: 3.5
env:
- TOXENV=pylint
- python: 3.5
env:
- TOXENV=docs
- python: 3.5
env:
- TOXENV=doctest
- python: 3.5
env:
- TOXENV=check-manifest
- python: 3.5
env:
- TOXENV=checkreadme

before_install:
- pip install codecov # for coverage

install:
- pip install tox

script:
- tox

after_success:
- codecov

0 comments on commit a52f18a

Please sign in to comment.