Skip to content

Commit

Permalink
add travis build file
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Dec 7, 2015
1 parent 0d64bf2 commit 1c69f1f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: python
python:
- "2.7"
- "3.4"
sudo: required
cache: pip
install:
- "pip install --upgrade pip"
- "pip install -r requirements-dev.txt"
- "pip install ."
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27,coveralls; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi

0 comments on commit 1c69f1f

Please sign in to comment.