Skip to content

Commit

Permalink
Added OS X to Travis CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
James Mills committed Jan 19, 2016
1 parent b8e47ff commit 7114e66
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .travis.yml
@@ -1,12 +1,16 @@
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
matrix:
include:
- os: linux
python: "2.7"
- os: osx
python: "2.7"
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install pypy ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3 ; fi
install:
- pip install pytest
- pip install coveralls
Expand Down

0 comments on commit 7114e66

Please sign in to comment.