Skip to content

Commit

Permalink
Enable Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kernc committed Nov 18, 2016
1 parent 11effa4 commit 0fa9af1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
language: python

sudo: false

matrix:
include:
- python: '2.7'
- python: '3.4'
- python: '3.5'
- python: '3.6-dev'
- python: 'nightly'
allow_failures:
- python: '3.5'
- python: '3.6-dev'
- python: 'nightly'
fast_finish: true

cache:
pip: true

before_install:
- set -e # fail on any error

install:
- python setup.py build && python setup.py install

script:
- for test in tests/*.py; do echo $test ; python $test > /dev/null ; done

0 comments on commit 0fa9af1

Please sign in to comment.