Skip to content

Commit

Permalink
Merge pull request #2 from AndreLouisCaron/ci
Browse files Browse the repository at this point in the history
Enable continuous integration based on TravisCI
  • Loading branch information
AndreLouisCaron committed Dec 21, 2017
2 parents f3d3e82 + 53c2be3 commit 18ae743
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-

sudo: false

language: python
python:
- "3.6"
- "3.5"
- "2.7"

before_install:
- pip --version

install:
- pip install tox
- pip install coveralls

script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then tox -e py36; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then tox -e py35; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27; fi

after_success:
- coveralls

0 comments on commit 18ae743

Please sign in to comment.